$(document).ready(function () {
    
    //底部导航
    $(".ft a").html("");
    //左侧 主导航菜单
	$(".nav a:last").remove();
    $(".nav a").each(function (i) {
        $(this).css({
            'backgroundPosition' : "0 -" + i * 58 + "px"
        }).
        html("").
        mouseover(function () {
            $(this).css({
                'backgroundPosition' : "-158px -" + i * 58 + "px"
            });
        }).
        mouseout(function () {
            $(this).css({
                'backgroundPosition' : "0 -" + i * 58 + "px"
            });
        }).
        mousedown(function () {
            $(this).css({
                'backgroundPosition' : "-316px -" + i * 58 + "px"
            });
        }).
        mouseup(function () {
            $(this).css({
                'backgroundPosition' : "-158px -" + i * 58 + "px"
            });
        }).
        focus(function () {$(this).blur()});
    });
    
    //右侧 横向子导航菜单
    $(".nav-h a").each(function (i) {
        $(this).css({
            'backgroundPosition' : "-" + i*102 + "px 0px"
        }).
        html("");
    });

    //右侧 竖向子导航菜单
    $(".nav-v a").each(function (i) {
        $(this).css({
            'backgroundPosition' : "0 -" + i*46 + "px"
        }).
        html("");
    });
    
    //我们是谁 导航
    $(".who-txt-nav a").each(function (i) {
        $(this).css({
            'backgroundPosition' : "-" + i*110 + "px 0"
        }).
        html("");
        if ( i + 1 == $(".who-txt-nav a").size()) {
            $(this).css({
                marginRight : "0"
            });
        }
    });
    //show 导航
    $(".show-txt-nav a").each(function (i) {
        $(this).css({
            'backgroundPosition' : "-" + i*136 + "px 0"
        }).
        html("");
        if ( i + 1 == $(".show-txt-nav a").size()) {
            $(this).css({
                marginRight : "0"
            });
        }
    });
    $(".show-content div:last").css({
        marginRight : "0"
    });
    //分页
    $(".shop-nav-page .pre").html("");
    $(".shop-nav-page .next").html("");
    $(".show-page .pre").html("");
    $(".show-page .next").html("");
    //设置背景
    if ($(".contactus").size() > 0) {
        $(".f-bd").css({
            background: "url(/web/img/bg-contactus.gif) no-repeat"
        });
    }
    if ($(".news-content").size() > 0) {
        $(".f-bd").css({
            background: "url(/web/img/bg-news-content.gif) no-repeat"
        });
    }
    if ($(".who").size() > 0) {
        $(".f-bd").css({
            background: "url(/web/img/bg-who.gif) no-repeat"
        });
    }
    $(".who-inner").jScrollPane({
        showArrows : true
    });
    $(".news-content-inner").jScrollPane({
        showArrows : true
    });
	$(".nav-v-ct-inner").jScrollPane({
        showArrows : true
    });
	$(".nav-h-ct-inner").jScrollPane({
        showArrows : true
    });
	//more
	$(".more").html('');
	$("a.fb").fancybox({
		zoomSpeedIn : 500,
		zoomSpeedOut : 500,
		imageScale : false,
		centerOnScroll : false
	});
	$(".shop-nav-item").click(function () {
		$(".shop-ct img").attr("src", $(this).attr("href"));
	});
	if ($(".shop-nav-item").size() >= 1) {
		$(".shop-ct img").attr("src", $(".shop-nav-item").eq(0).attr("href"));
	}
	
	$(".shop-nav-item").size() && $(".shop-nav-item:last").css({marginRight:0});
});