$(function(){
   $("ul li.click").click(function(){
      window.location=$(this).find("a").attr("href");
      return false;
    });
   $("div.module-content").click(function(){
      window.location=$(this).find("a").attr("href");
      return false;
    });
    $("ul li.click,div.module-content").css({
		cursor:"pointer"
	});
	$("ul li.click,div.module-content").hover(function(){
		$(this).css({
			backgroundColor:"#fde"
		});
	},function(){
		$(this).css({
			backgroundColor:"#fff"
		});
	});
});
