All pastes #2059625 Raw Edit

Unnamed

public text v1 · immutable
#2059625 ·published 2011-05-15 05:01 UTC
rendered paste body


var pkgStyle = document.getElementById("pkg1").style;


function raise(topval)
{
if (topval > 10)
{
pkgStyle.top = topval + "px";
setTimeout(raise(topval - 1), 500);
}
}