/*
 * Konami-JS
 * http://snaptortoise.com/konami-js
 * Copyright (c) 2009 George Mandis (georgemandis.com)
 * Version: 1.0 (04/27/2009)
 * Licensed under the Artistic License/GPL
 * http://dev.perl.org/licenses/
 * Tested in: Safari 4, Firefox 3, IE7
 */

var konami = {
        input:"",
        clear:setTimeout('konami.clear_input()',2000),
        load: function(link) {
                window.document.onkeyup = function(e) {
                        konami.input+= e ? e.keyCode : event.keyCode         
                        if (konami.input == "3838404037393739666513") {
                                konami.code(link)
                                clearTimeout(konami.clear)
                                }
                        clearTimeout(konami.clear)
                        konami.clear = setTimeout("konami.clear_input()",2000)
                        }
        },
        code: function(link) { window.location=link},
        clear_input: function() {
                konami.input="";
                clearTimeout(konami.clear);
        }
}
	konami.code = function() {
				document.getElementById('container').innerHTML = "<div style='width:400px; height:350px; position: fixed; bottom: 0px; right: 32px; z-index: 1000; cursor: pointer; opacity: 0.99999;'><img src='http://www.lasalle.edu/nerd/8bit.png' alt='You know the Konami code, well done.' border='0' /></div>";
				 setTimeout ( "setToBlack()", 3000 );
		}

function setToBlack ( )
{
  document.getElementById('container').innerHTML = "";
}

	konami.load()
