function Tab(){  //首页公司业务选项卡

     $(".Tab_con02").css("opacity",0).hide();
     $("#Tab_btn01").click( function () { 
               $(this).attr("class","Tab_title01")  ;
			    $("#Tab_btn02").attr("class","Tab_title03")  ;
				$(".Tab_con02").stop().animate({opacity:"0"},500,function(){$(this).hide()});
				$(".Tab_con01").stop().show().animate({opacity:"1"},500);
       })
	 $("#Tab_btn02").click( function () { 
               $(this).attr("class","Tab_title04")  ;
			    $("#Tab_btn01").attr("class","Tab_title02")  ;
				$(".Tab_con01").stop().animate({opacity:"0"},500,function(){$(this).hide()});
				$(".Tab_con02").stop().show().animate({opacity:"1"},500);
       }) 	 
}
$(function(){
	
    $(".fazheng_li01:odd").attr("class","fazheng_li02")	;
	
	Tab();   //首页公司业务选项卡
	
})
