﻿$(window).load(function() {
    var $UrlAll = window.location.href;
    var $UrlHost = "http://" + window.location.host;
    var $SelectValue = $UrlAll.replace($UrlHost, "");
    var $SiteMenu = $("#SiteMenu");
    var $obj = $SiteMenu.find("a[href='" + $SelectValue + "']");
    if ($obj.parents("li").is("li")) {
        $obj.parents("li").addClass("current");
    } else {
        //新闻详细页选中状态
        var $ref = "按时大时代";
        if ($UrlAll.indexOf("news") > -1) {
            $ref = "newslist";
        }
        //车型详细页选中状态
        if ($UrlAll.indexOf("cardetail") > -1 || $UrlAll.indexOf("carprice") > -1 || $UrlAll.indexOf("price_detail") > -1) {
            $ref = "autolist";
        }
        //视频详细页选中状态
        if ($UrlAll.indexOf("videoplay") > -1) {
            $ref = "videolist";
        }
        //视频详细页选中状态
        if ($UrlAll.indexOf("carpic") > -1) {
            $ref = "carpic";
        }

        //视频详细页选中状态
        if ($UrlAll.indexOf("postdetail") > -1) {
            $ref = "postlist";
        }
        //活动详细选中状态
        if ($UrlAll.indexOf("activitydetail") > -1) {
            $ref = "activitylist";
        }
        //汽车用品详细选中状态
        if ($UrlAll.indexOf("productdetail") > -1) {
            $ref = "productlist";
        }
        //保养服务详细选中状态
        if ($UrlAll.indexOf("maintain") > -1) {
            $ref = "maintain";
        }
        

        $("#SiteMenu").find("a").each(function() {
            if ($(this).attr("href").indexOf($ref) > -1) {
                if ($(this).parents("li").is("li")) {
                    $(this).parents("li").addClass("current");
                }
            }
        });
    }
});
  
