/* Global JavaScript  */
/* version:2011-03-14 */
/* Depends on JQuery  */

$(function(){
$(".news_title ul li").each(function(){
		$(this).mouseover(function(i){ 
			if($(this).attr("class")=="")
			{
				var j=$(".news_title ul li"),k=$(".news_title");
				$(j).attr("class","");
				$(this).attr("class","hover");
				$(k).nextAll().attr("class","m_content");
				$(k).nextAll().addClass("news-conter");
				$(k).nextAll().eq($(".news_title ul li").index(this)).removeClass("m_content");
			}
		});	
	});

});


$(function(){
$(".zhengce_title ul li").each(function(){
		$(this).mouseover(function(i){ 
			if($(this).attr("class")=="")
			{
				var j=$(".zhengce_title ul li"),k=$(".zhengce_title");
				$(j).attr("class","");
				$(this).attr("class","hover");
				$(k).nextAll().attr("class","m_content");
				$(k).nextAll().addClass("zhengce-conter");
				$(k).nextAll().eq($(".zhengce_title ul li").index(this)).removeClass("m_content");
			}
		});	
	});


});
