// 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("lovexin14").style.top=parseInt(document.getElementById

("lovexin14").style.top)+percent+"px";

lastScrollY=lastScrollY+percent; 
//alert(lastScrollY);
}

/*suspendcode14="<DIV id=\"lovexin14\" style='right:2px;POSITION:absolute;TOP:120px;'><table id='qq' width='106' border='0' cellpadding='0' cellspacing='0'><tr><td  width='106' height='40' background='/images/QQ_3.jpg' style='font-size:12px;line-height:40px;'></td></tr><tr><td background='/images/QQ_3_02.jpg' height='31' align='left' style='padding-left:9px;font-size:12px;'><a href='tencent://message/?uin=&Site=在线QQ&Menu=yes'>QQ:<span style='color:#000000;text-decoration:none'>664739478</span></a></td></tr><tr><td valign='top'><img src='/images/QQ_12.gif' width='106' height='44' alt=''></td></tr></table></div>"

document.write(suspendcode14);*/ 
window.setInterval("heartBeat()",1);
