// 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("lovexina").style.top=parseInt(document.getElementById("lovexina").style.top)+percent+"px";
document.getElementById("lovexinb").style.top=parseInt(document.getElementById("lovexinb").style.top)+percent+"px";
lastScrollY=lastScrollY+percent; 
//alert(lastScrollY);
}
suspendcode11="<DIV id=\"lovexina\" style='left:10px;POSITION:absolute;TOP:100px;'><a href='http://qtt.tq.cn/leavemsg.do?uin=8420632&amp;ltype=0&amp;page=http://www.newchannel.org/index.jsp&amp;localurl=http://www.kouyu.org/&amp;uingroup=8423329|8423323&amp;chattype=5&amp;transferpage=1&amp;tq_bottom_ad_url=http://qtt.tq.cn/post/sendmain.html&amp;tq_right_infocard_url=http://qtt.tq.cn/showcard.do&amp;buttonsflag=&amp;iscallback=1&amp;agentid=0&amp;rand=82480011625' target='_blank'><img border=0 src='/images/kefu.jpg' /></a></div>"
suspendcode12="<DIV id=\"lovexinb\" style='right:10px;POSITION:absolute;TOP:100px;'><a href='http://www.newchannel.org/Qiantai/course/kouyu.htm' target='_blank'><img border=0 src='http://www.kouyu.org/images/baoban.jpg' /></a></div>"

document.write(suspendcode11); 
document.write(suspendcode12); 

window.setInterval("heartBeat()",1);
