var konamicode = {
	
	enabled:false,
	tmp:Array(),  
	_konamiCode:Array(65,66,39,37,39,37,40,40,38,38),  
	
	init:function() {  
		this.tmp = Array(65,66,39,37,39,37,40,40,38,38);  
	},
	
	onPress:function(e){
		
		if(!this.enabled){
			
			var t = this.tmp.pop();
			
			if((e.keyCode-t) == 0){
				
				if(this.tmp.length == 0){
					
					this.enabled = true;
					
				}
				
			} else {
				
				this.init();
				
			}
			
		} else {
			
			this.action();
			
		}
		
	},
	
	//The Action
	action:function(){
		
		//alert("Konami Code Activated!");
		openLinkWithEvent( 'http://www.youtube.com/watch?v=po2EaxYlW50', 'EasterEgg', 'activated', 'konamicode' );
		
	}
	
}
