<!-- // Source: CodeFoot.com

// set the speed
// larger numbers = slower scroll
var howQuick = 15;

// do not edit below
// -----------------

var beIE = document.all?true:false;
var iWhere = 0;
var iLast = 0;

function scrollBackGround(){
  if (beIE){
     iWhere = iWhere + 2;
     	if 	(iWhere > iLast + 10) 
     		{
     		iLast = iWhere;
     		return(true);
     		}
  		else
     		{
     		document.body.style.backgroundPosition = "0 " + iWhere;
     		window.setTimeout("scrollBackGround()",howQuick);
     		}
  }
}
function startScroll(){
  if (beIE){
     iWhere = iLast;
     scrollBackGround();
     }
  }
//-->
