Layout contratto ( solo per MSIE 5.5 )
Index BG Managing
Verify the Arguments
setInterval() cfr setTimeout()
CrossBrowsers

<script language=javascript>
<!--
var a=eval('document.body');
var vip=0;
function BgScroll(Size){vip=vip+1;
if(vip > Size)vip=0
a.style.backgroundPosition="0 " +vip;}
function UpDate(){window.setTimeout("UpDate();",123,BgScroll());}
window.setTimeout("UpDate();")
//Alternativa : window.setInterval("scrollBG()",10);-->
</script>