$(document).ready(function() {
	
	$("li, button").click(function() {
		if ($(this).attr("href")) {
			document.location = $(this).attr("href");
		}
	});
});

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


function feature_popup(url) {
	$.get(url, function(html) {
		$("#feature-popup").html(html);
		$("#feature-popup").fadeIn(500);
	});
}
