$(document).ready(function(){
	
	//Makes the li's clickable
	
	$(".col1 li").click(function(){
	  window.location=$(this).find("a").attr("href"); return false;
	});
	
	
});