jQuery(function(jQuery){
  
  var kkeys = [], konami = "38,38,40,40,37,39,37,39,66,65";
jQuery(document).keydown(function(e) {
  kkeys.push( e.keyCode );
  if ( kkeys.toString().indexOf( konami ) >= 0 ){
    jQuery(document).unbind('keydown',arguments.callee);
    alert('The Konami Code Is Activated...');
	window.location = 'http://www.skyblueuntrust.com/forums/konami.php';
  }
});
  
});
