$(document).ready(function(){

	$(".clickable li").click(function(){
	  window.location=$(this).find("a").attr("href"); return false;
	});
	
	$(".clickable li").hover(function(){
		$(this).addClass('hover'); // Place a extra class when hover
	});

});