$(function(){
    $("#top li").hover(function(){$(this).addClass("hover");},function(){$(this).removeClass("hover");});
		$("#news li").hover(function(){if(!$(this).hasClass("show")){$(this).addClass("hover");}},function(){$(this).removeClass("hover");});
		$("#news .info:not('.open')").hide();
		$("#news .open").parent().addClass("show");
		$("#news .open2").show().parent().addClass("show");
		//$("#news .toggler:not(:first)").click(function(){$("#news .info:not('.open')").hide().parent().removeClass("show");$(".info",$(this).parent()).show().parent().addClass("show");});
		$("#news li:not(:first)").click(function(){$("#news .info:not('.open')").hide().parent().removeClass("show").removeClass("hover");$(".info",$(this)).show().parent().addClass("show");});
});