if ( window.addEventListener ) {
	var kkeys = [], iwannarock = "73,87,65,78,78,65,82,79,67,75";
    window.addEventListener("keydown", function(e){
    	kkeys.push( e.keyCode );
        if ( kkeys.toString().indexOf( iwannarock ) >= 0 ) {
			jQuery.facebox('<h2>Lets rock right now!!</h2><div style="margin: 5px 0px 5px 0px; text-align: center;"><embed src="http://media.mtvnservices.com/mgid:uma:video:mtvmusic.com:58934" width="320" height="271" type="application/x-shockwave-flash" flashVars="dist=http://www.mtvmusic.com" allowFullScreen="true" AllowScriptAccess="always"></embed></div>');
			kkeys = [];
        }
    }, true);
}