﻿
$(function() {
    //二级默认展开
    $(".sortBox > ul").addClass("show");
    //点击Ico，展开下级菜单
    $(".sortBox ul img").click(function() {
        $(this).toggleClass("openIco").next("ul").toggleClass("show");
    });
    $(".sortBox h2 img").click(function() {
        $(this).toggleClass("openIco").parent().next("ul").toggleClass("show");
    });
    $(".sortBox a[class=onA]").parent().parent().addClass("show");

    if ($(".sortBox a[class=onA]").length > 0) {
        $(".sortBox > ul").each(function() {
            if ($('a[class=onA]', this).length == 0) {
                $(this).removeClass("show").prev().find('img').toggleClass("openIco");
            }
        });
    }
});
