/*
*	Do not edit below this line
*/
var theurl 	= new String(window.location.href);
if (theurl.indexOf("home.html")<0) {
	var sint = setInterval( "var stopper = scrollingDetector(); if (!stopper) { window.scrollBy(0, 5);} else {clearInterval(sint);}", "10");
	setTimeout("clearInterval(sint)", 4000);
}
function scrollingDetector()
{

	if (navigator.appName == "Microsoft Internet Explorer") 
	{
		if(document.documentElement.scrollTop > 375) 
		{
			return true;
		} 
		else 
		{
			return false;
		}
	} 
	else 
	{ 
		 if (window.pageYOffset > 425) 
		 {
		 	return true;
		 } 
		 else 
		 {
		 	return false;
		 }
	}
}
/*
*	End of Scroll Logic
*/
