$(document).ready(function() {
	$("#nav li").click(function() {
		childLink=$(this).children("a")[0];
		window.location=$(childLink).attr("href");
	});
});