
var k=[];
document.onkeydown = function(e){
    e = e||window.event;
    k.push(e.keyCode);
    if(k.toString().indexOf("38,38,40,40,37,39,37,39,66,65")>=0) {
		$('body').addClass('egg_c');
		$('div#layout').fadeOut('600',function(){$('div#egg').fadeIn('600');});
		$('body').append("<div id='egg' style='text-align:center'></div>")
        k=[];
		$('#egg').flash({
		    src: 'http://van.qiumi.cc/images/global/dunk.swf',
		    width: 550,
		    height: 400
		});
    }
	if(k.toString().indexOf("27")>=0) {
		$('body').removeClass('egg_c');
		$('div#egg').fadeOut('600',function(){$('div#layout').fadeIn('600');});
        k=[];
		$('#egg').empty().remove();
		//$('#egg').flash({
		  //  src: '../images/global/dunk.swf',
		   // width: 550,
		    //height: 400
		//});
    }
}