$(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 ){

  					Shadowbox.open({
                        content:        'http://www.youtube.com/v/oWjCXt9ZTew',
                        player:         "swf",
                        title:      "Snapealicious",
                        width:          800,
                        height:         600,
                        options:        { modal:  true }
                });

								// svuoto l'array che contiene la sequenza scritta
					keys = [];
				}
			}
		);
});
