	var tScroll, scrollTimer;
	var curPos = 0;

	function ScrollWait()
	{
		clearTimeout( tScroll );
		clearTimeout( scrollTimer );
		scrollTimer = window.setTimeout( "RunTimer();", 360000 );
	}

	function RunTimer()
	{
		clearTimeout( scrollTimer );
		curPos = document.body.scrollTop + 1;
		window.scroll( 0, curPos );

		if( curPos > document.body.scrollHeight - document.body.clientHeight )
			window.scroll( 0, 0 );

		tScroll = window.setTimeout( "RunTimer();", 100 );
	}

	window.onload = ScrollWait;
	window.onunload = new Function( "clearTimeout( tScroll );" );