$(document).ready(function () {
    //红色标题
	$(".tab3 li:nth-child(1),.tab3 li:nth-child(2)").css("height","14px");
	$(".tab3 li:nth-child(1) a,.tab3 li:nth-child(2) a").css("font-size","14px");
	$(".tab3 li:nth-child(1) a,.tab3 li:nth-child(2) a").css("color","red");
	$(".tab3 li:nth-child(1) a,.tab3 li:nth-child(2) a").css("font-weight","bold");
    //本周推荐信息TAB
    $(".hot_tab1").mouseover(function () {
        $(".hot_tab1").removeClass("h_hot_tab1f"); //去掉样式
        $(".hot_tab1").addClass("h_hot_tab1");
        $(".hot_tab2").removeClass("h_hot_tab2"); //去掉样式
        $(".hot_tab2").addClass("h_hot_tab2f");
        $(".hot_txt1").css("display", "block");
        $(".hot_txt2").css("display", "none");

    });
    $(".hot_tab2").mouseover(function () {
        $(".hot_tab1").removeClass("h_hot_tab1"); //去掉样式
        $(".hot_tab1").addClass("h_hot_tab1f");
        $(".hot_tab2").removeClass("h_hot_tab2f"); //去掉样式
        $(".hot_tab2").addClass("h_hot_tab2");
        $(".hot_txt1").css("display", "none");
        $(".hot_txt2").css("display", "block");
    });
    //公告折扣信息
    $(".news_left_cen > div").mouseover(function () {
		//标题
        $(".news_left_cen > div").removeClass("news_tab");
        $(this).addClass("news_tab");
		//内容
		$(".news_tab1").mouseover(function () {
			$(".news_left_foot ul").css("display", "none")
            $(".tab1").css("display", "block")
    	});
        $(".news_tab2").mouseover(function () {
			$(".news_left_foot ul").css("display", "none")
            $(".tab2").css("display", "block")
    	});
		$(".news_tab3").mouseover(function () {
			$(".news_left_foot ul").css("display", "none")
            $(".tab3").css("display", "block")
    	});
    });

    //商家信息TAB
    $(".content_left_titl_left > div").mouseover(function () {
		//标题
        $(".content_left_titl_left > div").removeClass("cont_tab");
        $(".content_left_titl_left > div").addClass("contf_tab");
        $(this).removeClass("contf_tab");
        $(this).addClass("cont_tab");
        //内容
		$(".cont_tab1").mouseover(function () {
			$(".content_left_txt > div").css("display", "none");
            $(".cont_txt1").css("display", "block");
    	});
		$(".cont_tab2").mouseover(function () {
			$(".content_left_txt > div").css("display", "none");
            $(".cont_txt2").css("display", "block");
    	});
		$(".cont_tab3").mouseover(function () {
			$(".content_left_txt > div").css("display", "none");
            $(".cont_txt3").css("display", "block");
    	});
		$(".cont_tab4").mouseover(function () {
			$(".content_left_txt > div").css("display", "none");
            $(".cont_txt4").css("display", "block");
    	});
		$(".cont_tab5").mouseover(function () {
			$(".content_left_txt > div").css("display", "none");
            $(".cont_txt5").css("display", "block");
    	});
    });
    //供求信息
    $(".gq_tit_right div").mouseover(function () {
        //TAB页的变换
        $(".gq_tit_right div").removeClass("guild_tab"); //去掉样式
        $(".gq_tit_right div").addClass("guild_tabf");
        $(this).removeClass("guild_tabf"); //去掉样式
        $(this).addClass("guild_tab");
        //内容页的变换
        $(".guild_tab1").mouseover(function () {
			$(".guild_text > div").css("display", "none");
            $(".guild_text1").css("display", "block");
    	});
		$(".guild_tab2").mouseover(function () {
			$(".guild_text > div").css("display", "none");
            $(".guild_text2").css("display", "block");
    	});
		$(".guild_tab3").mouseover(function () {
			$(".guild_text > div").css("display", "none");
            $(".guild_text3").css("display", "block");
    	});
		$(".guild_tab4").mouseover(function () {
			$(".guild_text > div").css("display", "none");
            $(".guild_text4").css("display", "block");
    	});
		
		
    });
	

});
