$(document).ready(function(){
	$('#nav li').click(function(){
		document.location = $(this).children('a').attr('href');
	});
});
