// Cheat Codes

var monitor = new CheatCodeMonitor();
setInterval("monitor.resetTimer(1000)", 100);

function InitCheatCodes() {
	monitor.hasher = hex_md5;
	monitor.addCheatCode("Konami Code", "d89d4e7300c61f13cafc95fa2cf6ba0d", KonamiCodeAction);
}

function KonamiCodeAction() {
	alert("Konami code entered.");
}
