$(document).ready(function(){
    var keys     = [];
    var konami  = '38,38,40,40,37,39,37,39,66,65';
 
   $(document)
        .keydown(
            function(e) {
                keys.push( e.keyCode );
                if ( keys.toString().indexOf( konami ) >= 0 ){
 
                    audio18.play();
 
                    // empty the array containing the key sequence entered by the user
                    keys = [];
                }
            }
        );
});
