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("divMenu").style.top=parseInt(document.getElementById

("divMenu").style.top)+percent+"px";

lastScrollY=lastScrollY+percent; 
//alert(lastScrollY);
}
/*
suspendcode14="<DIV id=\"divMenu\" style='right:2px;POSITION:absolute;TOP:120px;'><table id='qq' width='118' border='0' cellpadding='0' cellspacing='0'><tr><td height='21' background='/image/qq_01.gif' style='padding-left:12px;font-size:12px;line-height:21px;'>在线QQ</td></tr><tr><td valign='top'><img src='/image/qq_02.jpg' width='118' height='15' alt=''></td></tr><tr><td height='21' align='left' background='/image/qq_03.jpg' style='padding-left:9px;font-size:12px;'>客服1：<a href='tencent://message/?uin=664739478&Site=在线QQ&Menu=yes'><span style='color:#000000;text-decoration:none'>664739478</span></a></td></tr><tr><td height='21' align='left' background='/image/qq_03.jpg' style='padding-left:9px;font-size:12px;'>总机：8364638</td></tr><tr><td valign='top'><img src='/image/qq_04.gif' width='118' height='34' alt=''></td></tr></table></div>"

document.write(suspendcode14); */
window.setInterval("heartBeat()",1); 