$(document).ready(function() {

	$("h1.logo").click(function() {
		document.location='/';
	});
	
	$("li, button").click(function() {
		if ($(this).attr("href")) {
			document.location = $(this).attr("href");
		}
	});
	
	$("li ol li").click(function() {
		if ($(this).attr("href")) {
			document.location = $(this).attr("href");
		}
	});
	
	
	
});

$(document).keypress(function(e){
	if(e.keyCode==27){
		$.unblockUI();
	}
});
