// JavaScript Document

if(navigator.appName.indexOf("Apple") == -1){
	setTimeout("vscroll2()",12000);
	var counter=0;
	var stepLimit=14;
	var initTop=0;
	}
if(navigator.appName.indexOf("Explorer") != -1){
	initTop=-1;
	document.getElementById('gtodiv').style.top=-1+"px";
	}
function vscroll2(){
	document.getElementById('gtodiv').style.top=(parseInt(document.getElementById('gtodiv').style.top) - 1)+"px";counter++;
		if(parseInt(document.getElementById('gtodiv').style.top) <= -3480){
		document.getElementById('gtodiv').style.top=initTop+"px";
		counter=0;
		}
		if(counter >= stepLimit){
			counter=0;scrolltimer=setTimeout("vscroll2()",6000);
		}else{
			scrolltimer=setTimeout("vscroll2()",160);
		}
}
