	lastScrollY=0;
	function heartBeat(){
		var diffY;
		if (document.documentElement && document.documentElement.scrollTop){
			diffY = document.documentElement.scrollTop;
		}else if (document.body){
			diffY = document.body.scrollTop;
		}else{
		}

		percent=.1*(diffY-lastScrollY);
		if(percent>0)percent=Math.ceil(percent);
		else percent=Math.floor(percent);
		document.getElementById("rightimg").style.top=parseInt(document.getElementById("rightimg").style.top)+percent+"px";
		lastScrollY=lastScrollY+percent;
	}

	suspensionright="<DIV id=\"rightimg\" style='right:0px;PosITION:absolute;TOP:220px;'><a href=http://qp.fj173.net/download target=_blank><img src=/skins/bmy_ploy_tv/images/tv8/gamedownyd.png   border=0></a></div>"
	document.write(suspensionright);
	window.setInterval("heartBeat()",1);
