// JavaScript Document
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
    {/*Netscape stuff*/}
	
//alert(diffY);
percent=.1*(diffY-lastScrollY); 
if(percent>0)percent=Math.ceil(percent); 
else percent=Math.floor(percent); 
document.getElementById("lovexin12").style.top=parseInt(document.getElementById("lovexin12").style.top)+percent+"px";
////document.getElementById("ADright").style.top=parseInt(document.getElementById("ADright").style.top)+percent+"px";

lastScrollY=lastScrollY+percent; 
//alert(lastScrollY);
}//from alixixi.com
suspendcode12="<DIV id=\"lovexin12\" style='POSITION:absolute;TOP:550px;'><a href='#'><img src='images/top.gif'  border='0'/></a></div>"
document.write(suspendcode12); 

////document.write("<div id='ADright' style='position:absolute;top:150px;right:5px;z-index:9999;'><a onClick='setNone(ADright)' style='position:absolute;right:1px;top:1px;cursor:pointer;display:block;width:14px;height:14px;line-height:14px;font-size:12px; font-family:Arial;color:#FF0000;text-align:center;background:#F2F2F2;border:1px solid #999;overflow:hidden;'>X</a><a href='http://www.rlzg.net/Job.asp'><img src='images/zaoping.gif' border='0' /></a></div>");


window.setInterval("heartBeat()",1);



function setNone(str_fd){str_fd.style.display="none";}

//---------------------
//×ó²àÆ¯¸¡´úÂë

