	stalkery_start = 140;
	currentY = stalkery_start;
    lastScrollY = 0;
	whichIt = null;    
	self.onError=null;
	NS = (document.layers) ? 1 : 0;
	IE = (document.all) ? 1: 0;

	if (IE)
	{	
	stalkery = document.all.floater.style.pixelTop;
	}
		
	if (NS) 
	{
	stalkery_start = 0;
	stalkery = document.floater.top;
	}
	
	function heartBeat() 
	{
		if(IE) { diffY = document.body.scrollTop; }
	    if(NS) { diffY = self.pageYOffset; }
		
		if(diffY != lastScrollY) {
	                percent = .1 * (diffY - lastScrollY);
	                if(percent > 0) percent = Math.ceil(percent);
	                else percent = Math.floor(percent);
					if(IE)
					{ 
					stalkery += percent;
					document.all.floater.style.pixelTop = stalkery + stalkery_start;
					}
					if(NS) 
					{
					stalkery += percent;
					document.floater.top = stalkery + stalkery_start;
					}
					lastScrollY = lastScrollY + percent;
	    }
	}
		
	if(NS || IE) action = window.setInterval("heartBeat()",1);
	

