// included within open_site.php


var contra = {
	input : "",
	cheat : "U U D D L R L R B A START ",
	start : function(link) {
		window.document.onkeydown = function(e) {
			
			if (e && e.keyCode != null) {
				/* cap input at 50 characters */
				if (contra.input.length > 50) {
					contra.input = "";
				}
				/* check if they're potentially starting a new code input.. */
				if (e.keyCode == 38) {
					if (contra.input != "U ") {
						contra.input = "";
					}
				}
				switch(e.keyCode) {
					case 38: append = "U "; break;
					case 40: append = "D "; break;
					case 37: append = "L "; break;
					case 39: append = "R "; break;
					case 38: append = "U "; break;
					case 66: append = "B "; break;
					case 65: append = "A "; break;
					case 13: append = "START "; break;
					default: append = "? ";
				}
				contra.input += append;
				//document.title = ("code recorded so far = " + contra.input);

				if (contra.input == contra.cheat) {
					contra.activate(link);
				}
			}
		}
	}
}

contra.activate = function() {
	//alert("Cheat Activated ");
	contra.input = "";
	//document.write(contra);
	//document.getElementById("home-logo").style.background="url('style/images/special/acorn_contra_logo.png') left top no-repeat;";
	//document.getElementById('body').className="contra";
	//document.getElementById(divID).style.visibility = "visible
	location.href="http://www.acornrealty.com.au/?d=contra";
	//document.title = (contra.cheat);
}

contra.start();
