// 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("web_ad").style.top=parseInt(document.getElementById("web_ad").style.top)+percent+"px";
lastScrollY=lastScrollY+percent;
//alert(lastScrollY);
}
suspendcode="<DIV id=\"web_ad\" style='left:770px;POSITION:absolute;TOP:95px; border:0px solid #ddd;'><iframe src='../swf/floatBanner/201006_value/index.html' width='170' height='287' marginwidth='0' marginheight='0' scrolling='no' frameborder='0' align='center'></iframe></div>";
document.write(suspendcode);

window.setInterval("heartBeat()",1);
