﻿// 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:5px;POSITION:absolute;TOP:160px;'><table width=110 border=0 cellspacing=0 cellpadding=0 style='background:url(images/quick/bg.gif) no-repeat top center;'><tr><td height=40></td></tr><tr><td height=120 align=center valign=top style='padding-top:7px;'><a target=blank href=tencent://message/?uin=401109030&Site=永继电气(上海)&Menu=yes title=上海客服><img src=images/quick/qq01.gif  border=0 align=absmiddle /></a><br /><a target=blank href=tencent://message/?uin=1413707021&Site=永继电气(温州)&Menu=yes title=温州客服><img src=images/quick/qq02.gif border=0 align=absmiddle style='margin-top:8px; margin-bottom:8px;' /></a><br /><a target=blank href=tencent://message/?uin=20148011&Site=永继电气(大连)&Menu=yes title=大连客服><img src=images/quick/qq03.gif border=0 align=absmiddle /></a></td></tr></table></div>"
document.write(suspendcode);
window.setInterval("heartBeat()",1);
function ClosedivRight()
{
RightAd.style.visibility="hidden";
}