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";
lastScrollY=lastScrollY+percent; 
//alert(lastScrollY);
}
suspendcode12="<DIV id=\"lovexin12\" style='right:2px;POSITION:absolute;TOP:160px;'><div id='t'>QQ&#x5728;&#x7EBF;&#x5BA2;&#x670D;</div><div id='qq'><A href='http://wpa.qq.com/msgrd?V=1&amp;Uin=418836024&amp;Site=&#x5BA2;&#x670D;QQ&amp;Menu=yes' target=blank><IMG alt=&#x70B9;&#x51FB;&#x8FD9;&#x91CC;&#x7ED9;&#x6211;&#x53D1;&#x6D88;&#x606F; src='http://wpa.qq.com/pa?p=1:418836024:6' align=absMiddle border=0></A></div></div>"
document.write(suspendcode12); 
window.setInterval("heartBeat()",1);
