$(document).ready(function(){
	/* make the whole nav-entry clickable */
	$("ul.navigation li").click(function(){
		document.location.href = $(this).children("a").attr("href");	
	});
});
