<!--
lastScrollX = 0; 
lastScrollY = 0;

function heartBeat(){
		floatlayer=document.getElementById("float_layer");
		diffY = document.body.scrollTop;
		floatlayer.style.pixelLeft =document.body.clientWidth - 90;
		
	if (diffY != lastScrollY) {		
		percent = .1 * (diffY - lastScrollY);
		
		if (percent > 0) percent = Math.ceil(percent);
		else percent = Math.floor(percent);

		floatlayer.style.pixelTop += percent;
		lastScrollY = lastScrollY + percent;
	}		


}

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

//-->
