/*var kkeys = [], 
    konami = "38,38,40,40,37,39,37,39,66,65";
$(document).keydown(function(e) {
  kkeys.push( e.keyCode );
  if ( kkeys.toString().indexOf( konami ) >= 0 ){
    $(document).unbind('keydown',arguments.callee);
    	// Launch easter egg here 
		alert("Haddooken!");
  }
});*/

/*function EvalSound(soundobj) {
	var thissound=document.getElementById(soundobj);
    thissound.Play();
}*/
	  
var kkeys = [], konami = "38,38,40,40,37,39,37,39,66,65";
$(document).keydown(function(e) {
  kkeys.push( e.keyCode );
  if ( kkeys.toString().indexOf( konami ) >= 0 ){
    //$(document).unbind('keydown',arguments.callee);
	kkeys = [];
     //		
	 //EvalSound('sound1');
	 $("div#hadouken").show();
	 $("div#hadouken").html('<img src="i/street29.gif" />');	 	 
	 window.setTimeout(function() {		 
		 $("div#hadouken").hide();
	 }, 2000);
	 
  }
});


