
		// Global variables: ___________________________________________________________________

		var counts = [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ];
		var rate = [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ];
		
		// Functions: __________________________________________________________________________
		
		function StartKillCounter() {
			var millions = [ 90000, 46623, 2262, 1276, 1052, 691, 533, 515, 345, 292, 65, 63, 23, 9 ];
			var perSecond = 8;
			for (var i = 0; i < counts.length; ++i) 
				rate[i] = millions[i] * 1000000 / 365 / 24 / 60 / 60 / perSecond;
			setInterval(NewCounts, 1000 / perSecond);
		}
		
		function NewCounts() {
			var num, thous, str;
			for (var i = 0; i < counts.length; ++i) {
				counts[i] += rate[i];
				num = Math.round(counts[i]);
				str = "";
				while (num > 1000) {
					thous = num % 1000;
					if (thous < 10)
						thous = "00" + thous;
					else if (thous < 100)
						thous = "0" + thous;
					str = "," + thous + str;
					num = Math.floor(num / 1000);
				}
				str = num + str;
				document.getElementById("count" + i).innerHTML = str;
			}
		}
