$(function() {

	//li links

	$("nav ul li, #news ul li").click(function() {
		
		var href = $(this).find("a").attr("href");

		window.location = href;
	
	});

});

