//热点新闻tab
$(function(){
		   $("ul[class='inform_mid_title']>li").mouseover(function(){
						//alert("success");
						var flag=$(this).attr("id");
						$(this).prevAll().attr("class","inform_normal");
						
						$(this).nextAll().attr("class","inform_normal");
						
						$(this).attr("class","inform_active");
						
						//alert(flag);
						var id="inform_mid_con"+flag;
						//alert(id);
						$("div[id='inform_mid_con']>div").each(function(index){
							if($(this).attr("id")==id)
							{
								$(this).css("display","block");
							}
							else
							{
								$(this).css("display","none");
							}
						});
					});// JavaScript Document
		   })


//网站导航tab标签
$(function(){
		   $("ul[class='web_nav_title']>li").click(function(){
						//alert("success");
						var flag=$(this).attr("id");
						$(this).prevAll().attr("class","web_nav_normal");
						
						$(this).nextAll().attr("class","web_nav_normal");
						
						$(this).attr("class","web_nav_active");
						
						//alert(flag);
						var id="information_tab_content"+flag;
						//alert(id);
						$("div[id='information_tab_content']>div").each(function(index){
							if($(this).attr("id")==id)
							{
								$(this).css("display","block");
							}
							else
							{
								$(this).css("display","none");
							}
						});
					});// JavaScript Document
		   })


