(function(){
	var lastScrollY = 0;
	var suspendcode1 = "<div id=\"service_gm\" style='right:2px;position:absolute;top:320px;z-index:101;'><a href='http://co.enjoymmo.com/2009/01/communicate-with-fellow-players-and-gms/' title='Level 1-10 Video Guide' target='_blank'><img src='http://co.enjoymmo.com/images/co_vedio_bt.png'  alt='Add official msn group' /></a></div>";
	var suspendcode2 = "<div id=\"service_g\" style='left:2px;position:absolute;top:320px;z-index:101;'><a href='http://livehelp.enjoymmo.com/livehelp/index.php' title='Live Help' target='_blank' onclick='openLiveHelp(); return false'><img src='http://livehelp.enjoymmo.com/livehelp/include/status.php' id='LiveHelpStatus' name='LiveHelpStatus' border='0' alt='Live Help' onload='statusImagesLiveHelp[statusImagesLiveHelp.length] = this;' /></a></div>";
	
	if (timer) {
		clearInterval(timer);
	}
	
	document.write(suspendcode1);
	document.write(suspendcode2);
	
	function heartBeat(){
		var diffY;
		if (document.documentElement && document.documentElement.scrollTop) {
			diffY = document.documentElement.scrollTop;
		}
		else {
			if (document.body) {
				diffY = document.body.scrollTop;
			}
		}
		
		percent = .1 * (diffY - lastScrollY);
		if (percent > 0) {
			percent = Math.ceil(percent);
		}
		else {
			percent = Math.floor(percent);
		}
		
		document.getElementById("service_gm").style.top = parseInt(document.getElementById("service_gm").style.top) + percent + "px";
		document.getElementById("service_g").style.top = parseInt(document.getElementById("service_g").style.top) + percent + "px";
		
		
		lastScrollY = lastScrollY + percent;
	}
	
	var timer = setInterval(function(){
		heartBeat();
	}, 1);
})();
