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("makewing1").style.top=parseInt(document.getElementById("makewing1").style.top)+percent+"px";
document.getElementById("makewing2").style.top=parseInt(document.getElementById("makewing2").style.top)+percent+"px";
 
lastScrollY=lastScrollY+percent; 
 
} 
suspendcode1="<DIV id=makewing1 style='POSITION:absolute;TOP:100px;left:0px;z-index:99999;'><a href='http://www.sznet110.gov.cn/index.jsp' target='_blank'><img  src='http://www.netbig.com/images/sznet110chacha.gif' width='70' height='113'/></a></div>"
 
suspendcode2="<DIV id=makewing2 style='POSITION:absolute;TOP:100px;right:0px;z-index:99999;'><a href='http://www.sznet110.gov.cn/index.jsp' target='_blank'><img src='http://www.netbig.com/images/sznet110jingjing.gif' width='70' height='113'/></a></div>"
 
document.write(suspendcode1); 
document.write(suspendcode2); 
window.setInterval("heartBeat()",1); 
