$(document).ready(function(){
	$(document).bind('keydown', 'Ctrl+l', function(evt){
		$(".adminBar").load("/application/Modules/CMS/User/loginform.php");
		$(".adminBar").slideDown("slow");
		evt.stopPropagation();  
		evt.preventDefault();
		return false;
	});
});
