// 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("lovexin12").style.top=parseInt(document.getElementById("lovexin12").style.top)+percent+"px";

lastScrollY=lastScrollY+percent; 
//alert(lastScrollY);
}
suspendcode12="<DIV id=\"lovexin12\" style='left:-3px;POSITION:absolute;TOP:142px;width:100px; height:200px'><TABLE height=200 cellSpacing=0 cellPadding=0 width=110 border=0><TBODY><TR><TD><TABLE cellSpacing=0 cellPadding=0 width='100%' border=0><TBODY><TR></TR></TBODY></TABLE></TD></TR><TR><TD vAlign=center align=middle width=110 background='../js/images/88.gif' height=200><TABLE height=201 cellSpacing=0 cellPadding=0 width=110 border=0><TBODY><TR><TD width=110 valign=top><br><br><br><br><p align=center><a class='qqb' target=blank href='http://wpa.qq.com/msgrd?V=1&Uin=451208201&Site='在线咨询'&Menu=no'> <img border=0 src='http://wpa.qq.com/pa?p=1:451208201:4'>  境内<br><a class='qqb' target=blank href='http://wpa.qq.com/msgrd?V=1&Uin=422107961&Site='在线咨询'&Menu=no'> <img border=0 src='http://wpa.qq.com/pa?p=1:422107961:4'>  境外<br><a class='qqb' target=blank href='http://wpa.qq.com/msgrd?V=1&Uin=515357654&Site='在线咨询'&Menu=no'> <img border=0 src='http://wpa.qq.com/pa?p=1:515357654:4'>  签证<br><a class='qqb' target=blank href='http://wpa.qq.com/msgrd?V=1&Uin=958528367&Site='在线咨询'&Menu=no'> <img border=0 src='http://wpa.qq.com/pa?p=1:958528367:4'>  票务<br></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></div>"
document.write(suspendcode12);
window.setInterval("heartBeat()",1);