
var lstep=10;
var ziel=270;



function init(){
     if(document.getElementById){
        obj = document.getElementById("sticker_sammlung");
        obj.style.top = "-200px";
     }
}

function movein(){
        if(document.getElementById){
                if(parseInt(obj.style.top) < ziel){
                        obj.style.top = parseInt(obj.style.top) + lstep + "px";
                        setTimeout("movein()",12);
                }
        }
}
