Code:
function movedown(){
if (iens6&&parseInt(crossobj.style.top)>=(contentheight*(-1)+100))
crossobj.style.top=parseInt(crossobj.style.top)-speed+"px"
else if (ns4&&crossobj.top>=(contentheight*(-1)+100))
crossobj.top-=speed
movedownvar=setTimeout("movedown()",20)
}
Play with those 100's. The first is really the only one that counts but, once you have it adjusted to your liking, duplicate it for the second one (the first is for modern browsers, the second for old NS4). Contrary to what one might think, actually increasing the number is what I think you need to do, try 150.
Bookmarks