jQuery(function($){

$("div#kys-news li.clearfix").click(function(){
  window.location=$(this).find("a").attr("href");
  return false;
});

$("div#kys-news li.clearfix").css({
		display:"block",
		cursor:"pointer"
	});
	$("div#kys-news li.clearfix").hover(function(){
		$(this).css({
			backgroundColor:"#F5F6F9"
		});
	},function(){
		$(this).css({
			backgroundColor:"#ffffff"
		});
	});
});