
$(document).ready(function(){

    /*Рубрики и подрубрики*/
   $(".cat li ul").hide(0);
   
   $(".cat li").click(function(){
    if ($("ul li",this).length){        
        if ($("ul",this).css("display") == "none"){
            $(".cat li ul").slideUp("fast");
            $("ul", this).slideDown("fast");
         }
     }
    else{
        location.href = $("a",this).attr("href");
     }
    return false;
   }); 
   
   if (document.location.pathname != "/") {
       /*Раскрываем активную категорию*/
        $(".cat li ul li a[@href$=" + document.location.pathname + "]").parent("li").parent("ul").css({
            "display": "block"
        });
        
        /*Меняем цвет активной категории*/
        $("ul.cat li a[@href$=" + document.location.pathname + "]").css({
            "background-color": "white",
            "color": "#b09067",
            "padding": "5px",
            "text-decoration": "none"
        });
        $("ul.cat li a[@href$=" + document.location.pathname + "]").parent("li").css({
            "margin": "10px 0"
        });
        
        $("ul.cat li ul li a[@href$=" + document.location.pathname + "]").css({
            "background-color": "white",
            "color": "#b09067",
            "padding": "5px",
            "text-decoration": "none"
        });
        $("ul.cat li ul li a[@href$=" + document.location.pathname + "]").parent("li").css({
            "margin": "10px 0"
        });
    } 
});

