// 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("RightAd").style.top=parseInt(document.getElementById("RightAd").style.top)+percent+"px";
lastScrollY=lastScrollY+percent;
//alert(lastScrollY);
}
suspendcode="<div id='RightAd' style='right:10px;POSITION:absolute;TOP:120px;'><table width=101 border=0 cellspacing=0 cellpadding=0 style='background:url(images/qqBg.gif) repeat-y top center;'><tr><td align=center valign=top style='background:url(images/qqTop.gif) no-repeat top center; padding-bottom:10px;'><a target=blank href=tencent://message/?uin=670543931&Site=欧特龙客服①&Menu=yes><img border=0 SRC=http://wpa.qq.com/pa?p=1:670543931:3 style='margin-top:90px;'></a><br/ ><a target=blank href=tencent://message/?uin=34305678&Site=欧特龙客服②&Menu=yes><img border=0 SRC=http://wpa.qq.com/pa?p=1:34305678:3 style='margin-top:10px;'></a></td></tr><tr><td><img src=images/qqBoot.gif border=0 align=absmiddle /></td></tr></table></div>"
document.write(suspendcode);
window.setInterval("heartBeat()",1);
function ClosedivRight()
{
RightAd.style.visibility="hidden";
}
