var speed=-250;
		
function initialize() {
	startit();
}

function iecompattest()	{
	return (document.compatMode!="BackCompat")? document.documentElement : document.body;
}

function scrollwindow()	{
	if (document.all)
		temp=iecompattest().scrollTop;
	else
		temp=window.pageYOffset;
		
	c=temp;
	if (c>0){
		if (document.all) {
			x=iecompattest().scrollTop+speed; }
		else {
			x=window.pageYOffset+speed;
			window.scroll(0,x);
		}
	}
	else {
		clearInterval(hihi);  
	}
}

function startit(){
	hihi=setInterval("scrollwindow()",10);
}
