$(document).ready(function() // Preform when the DOM is ready
{ 	 	
 	$(".nav-list li").click(function(){
    	window.location=$(this).find("a").attr("href");return false;
	});
}); // Close Doc Ready
