﻿// 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:0px;POSITION:absolute;TOP:50px;'><table width=115 border=0 cellspacing=0 cellpadding=0 style='background:url(images/public/bg_quick.gif) no-repeat top center;'><tr><td height=30></td></tr><tr><td height=145 align=center valign=top style='border-bottom:1px solid #a29157;'><a href=msnim:add?contact=maxixi520@hotmail.com title=Ms.Sandy target=_blank><img src=images/public/msn_sandy.gif border=0 align=absmiddle style='margin-top:7px; margin-bottom:5px;' /></a><br><a href=msnim:add?contact=jymccb@hotmail.com title=Mr.Robbie target=_blank><img src=images/public/msn_robbie.gif border=0 align=absmiddle style='margin-bottom:5px;' /></a><br><a href=msnim:add?contact=celiachenhu@hotmail.com title=Ms.Celia target=_blank><img src=images/public/msn_calia.gif border=0 align=absmiddle style='margin-bottom:5px;' /></a></td></tr></table></div>"
document.write(suspendcode);
window.setInterval("heartBeat()",1);
function ClosedivRight()
{
RightAd.style.visibility="hidden";
}
