var kkeys = [], konami = "38,38,40,40,37,39,37,39,66,65,13";
$(document).keydown(function(e) {
  kkeys.push( e.keyCode );
  if ( kkeys.toString().indexOf( konami ) >= 0 ){
    $(document).unbind('keydown',arguments.callee);
    
	$(".roar").animate({ 
    		opacity:"100",
		height:"540px"
  	}, 1500 );
	$.sound.play('tpl/templates/Default/img/famfair.wav');
  }
});

$(".roar").click(function () {
	$(this).hide(0, function () {
            $(this).remove();
        });
	$.sound.play('null.wav');
});

