
			/*
			This counter script was made by Jonathan Heathcote, (mail@)Jhnet.co.uk
			
			And no, it does actually work. This file is updated by a remote server which runs a custom script to scan servers for the mod and collect information. Contact me if you\'re interested in a similar system for your site.
			
			Stats are updated every 60 seconds where possible.
			*/
			
			var playerCount =  100;
			var intCnt = 0;
			var eggType = 0;
			
			$(document).ready(function(){
				$("#jonnyHeathcotesUbberProCounter").html("0");
				//$("a[@href^=\'http://www.opera.com\']").attr("href","http://www.getfirefox.com"); // Pwnt!
				intCnt = setTimeout("countUp();",1);
				
				$("*").keypress(function(e){ // Important stuff... Obviously...
					eggType = eggType + e.which;
					if (eggType == 954) {
						playerCount = ((144 + (1/3))*9) + 38
						intCnt = setTimeout("countUp();",1);
						eggType = 0;
					}else if (eggType == 1408) {
						$("*").hide("slow");
						eggType = 0;
					}
				});
			});
			
			function countUp(){
				var cnt = parseInt($("#jonnyHeathcotesUbberProCounter").html());
				
				if (cnt < playerCount){
					$("#jonnyHeathcotesUbberProCounter").html(cnt+1);
					intCnt = setTimeout("countUp();",Math.round(600/(playerCount-cnt))+1);
				}
				
			}
		