
// 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);
}
function CloseQQ()
{
RightAd.style.display="none";
return true; 
}
suspendcode="<div id='RightAd' style='left:100px;POSITION:absolute;TOP:100px;background:url(qqimages/index_090_1.gif) no-repeat;text-align:center; width:93px; height:156px; '><a onclick='CloseQQ()' style='position:relative' href='javascript:;' shape='circle' coords='98,19,12'><img style='position:absolute; top:13px; left:14px' border='0' src='qqimages/close_01.gif' alt='close' /></a><br /><br /><br /><A href='msnim:chat?contact=Judy@leader-creation.com' target=blank><img border='0' src='qqimages/msnn.gif' style='margin-bottom:5px' alt='send msn to me' /></A><br /><a target='_blank' href='http://web.im.alisoft.com/msg.aw?v=2&uid=cnleader&site=cnalichn&s=1' ><img style='margin-bottom:5px' border='0' src='http://web.im.alisoft.com/online.aw?v=2&uid=cnleader&site=cnalichn&s=1' alt='Send message to me!' /></a><br /><a target='_blank' href='http://web.im.alisoft.com/msg.aw?v=2&uid=jiangzhiming2008&site=cnalichn&s=1' ><img border='0' src='http://web.im.alisoft.com/online.aw?v=2&uid=jiangzhiming2008&site=cnalichn&s=1' alt='Send message to me!' /></a></div>"


document.write(suspendcode);
window.setInterval("heartBeat()",1);
function ClosedivRight()
{
RightAd.style.visibility="hidden";
}