document.observe('dom:loaded',function(){
	
	var loginHandler = function(){
		
		showOrHideEditElements('show','small');
		xajax_login('loadWindow','');
		
	};
	
	var escapeHandler = function(){
		showOrHideEditElements('hide','small');
	};
	
	new HotKey('l',function(event){
		loginHandler();
	});
	
	new HotKey('esc',function(event){
		escapeHandler();
	},{
		
		ctrlKey: false	
		
	});
	
});

