// 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("ALayer1").style.top=parseInt(document.getElementById("ALayer1").style.top)+percent+"px";
document.getElementById("ALayer2").style.top=parseInt(document.getElementById("ALayer1").style.top)+percent+"px";

lastScrollY=lastScrollY+percent;
//alert(lastScrollY);
}
suspendcode12="<DIV id=\"ALayer1\" style='left:0px;PosITION:absolute;TOP:40px;FILTER: alpha(opacity=100);'><p><a href='/article.php?id=130' target='_blank'><img src='http://www.zhaishidai.net/ad/images/20100429001.gif'/></a></p><p><a href='javascript:void(0);'><img src='http://www.zhaishidai.net/ad/images/close.gif' style='cursor:pointer;' border=0 onclick=\"closeBanner();\"/></a></p></div>"
suspendcode14="<div id=\"ALayer2\" style='right:0px;PosITION:absolute;TOP:200px;FILTER: alpha(opacity=85);'></div>"
document.write(suspendcode12);
document.write(suspendcode14);
window.setInterval("heartBeat()",1);
function closeBanner()
{
document.getElementById("ALayer1").style.display= 'none';
document.getElementById("ALayer2").style.display= 'none';
}
//setTimeout("closeBanner()",6000);document.body.removeChild(document.getElementById('ALayer1'))
