Hola
Prueba así
Código Javascript
:
Ver originalx = 0;
timer_on = 1;
function moure(id)
{
document.getElementById(id).style.top = x;
x += 1;
if(x > 30)
{
document.getElementById(id).style.top = 0 +"px";
x = 0;
clearTimeout(t1);
} esle {
t1=setTimeout("moure(id)",10);
}
Suerte