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("CoupletLeft").style.top=parseInt(document.getElementById("CoupletLeft").style.top)+percent+"px";
document.getElementById("CoupletRight").style.top=parseInt(document.getElementById("CoupletLeft").style.top)+percent+"px";
lastScrollY=lastScrollY+percent;
}
suspendcode12="<DIV id=\"CoupletLeft\" style='left:0px;position:absolute;top:50px;text-align:center;'>&nbsp;</div>"
suspendcode14='<DIV id=\"CoupletRight\" style=right:0px;position:absolute;top:50px;text-align:center;><TABLE id=submenu111 width=110 cellSpacing=0 cellPadding=0 border=0><TR><TD></TD></TR><TR><TD vAlign=center align=middle  background=js/img/middle.gif><TABLE width=100% cellSpacing=0 cellPadding=2><TR><TD><img src="images/top.gif" /></TD></TR></table></td></tr><TR><TD></TD></TR></TBODY></TABLE></div>'
document.write(suspendcode12);
document.write(suspendcode14);


window.setInterval("heartBeat()",1);







