if ( window.addEventListener ) {
	var kkeys = [], vroomvroom = "86,82,79,79,77,86,82,79,79,77";
    window.addEventListener("keydown", function(e){
    	kkeys.push( e.keyCode );
        if ( kkeys.toString().indexOf( vroomvroom ) >= 0 ) {
			var bo = document.createElement('img');
			bo.className = "unicorn_surprise";
			bo.src = "/images/bo_easteregg.gif";
			bo.style.display = 'block';
			bo.style.width = '300px';
			bo.style.position = 'absolute';
			bo.style.border = 'none';
			bo.style.top = '150px';
			bo.style.left = '0px';
			document.body.appendChild(bo);
			
			jQuery('img.unicorn_surprise').fadeIn('slow', function(){
				jQuery(this).animate({left:"800px"}, 5000).fadeOut('slow', function(){ bo.parentNode.removeChild(bo); });
				
			});
			
			
			kkeys = [];
        }
    }, true);
}
