// JScript source code
var repeat=1;
var start=0;
function scrollmove() 
{
var MainBody = document.getElementById("MainBody")
	if(repeat==1)
	{
		MainBody.scrollTop=start;
		start++;
		setTimeout("scrollmove()",40);
	}
	if (start > MainBody.scrollHeight - MainBody.offsetHeight+1) start=0;
}
scrollmove();
function MouseOver()
{
	repeat=0;	
}
function MouseOut()
{
	repeat=1;	
	scrollmove();
}