// 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:1px;POSITION:absolute;TOP:260px;'><a href='#'><img src='http://www.tongkong.com.cn/images/duilian_01.jpg' border=0  ></a><br><a  href='tencent://message/?uin=1372843612&Site=&Menu=yes'  target='_blank'><img src='http://www.tongkong.com.cn/images/duilian_02.jpg' border=0  ></A><br><a href='msnim:chat?contact=oyotoon@hotmail.com' target='_blank'><img src='http://www.tongkong.com.cn/images/duilian_03.jpg' border=0  ></a></div>"

document.write(suspendcode14); 
window.setInterval("heartBeat()",1);

 
