$(function(){
	$(".news_title").click(function(){		
		$(this).addClass("newsclose").siblings(".news_title").removeClass("newsclose");
		$(this).next(".newsRoom_info").show().siblings(".newsRoom_info").hide();
		return false;
	});   
	
	if(window.location.hash!=""){		
		var sHash=window.location.hash;
		//sHash=sHash.replace(/#/,"");
		$(sHash).addClass("newsclose");
		$(sHash).next(".newsRoom_info").show();
	}else{
		$(".newsRoom_info").eq(0).show();	
		$(".news_title").eq(0).addClass("newsclose");
	}
	
});
