// JavaScript Document
TopScrollY=0;
function heartTop(){
	var diffY;
	if (document.documentElement && document.documentElement.scrollTop)
		diffY = document.documentElement.scrollTop;
	else if (document.body)
		diffY = document.body.scrollTop
	else
		{/*Netscape stuff*/}
	
	var xScroll;
	if(window.innerHeight&&window.scrollMaxY){
		xScroll=document.body.scrollWidth;
	}else if(document.body.scrollHeight>document.body.offsetHeight){
		xScroll=document.body.scrollWidth;
	}else{
		xScroll=document.body.offsetWidth;
	}
	xScroll = (xScroll-1000)/2;
	//alert(xScroll);
	
	
	
	percent=.1*(diffY-TopScrollY);
	if(percent>0)percent=Math.ceil(percent);
	else percent=Math.floor(percent);
	document.getElementById("topID").style.right=xScroll +"px";
	document.getElementById("topID").style.top=parseInt(document.getElementById("topID").style.top)+percent+"px";
	TopScrollY=TopScrollY+percent;
	//alert(TopScrollY);
}
suspendcode12="<div id=\"topID\" style='position:absolute;top:500px;width:11px;height:40px;'><a href=\"#Top\"><img src=\"images/topImg.gif\" border=\"0\"></a></div>"
document.write(suspendcode12);
window.setInterval("heartTop()",1);
