$(document).ready(function(){
    clr = 'edit.image4you.ru'.length + 3; //домен
    window.url = location.href.substring(location.href.indexOf("/")+clr);
    if (url != ''){
        active = $(".leftMenu li a[href$='"+url+"']");
        active.addClass("hover").next("ul").show();
        prevActive1 = active.closest('ul').show().prev('a').addClass("prevHover");
        prevActive2 = active.closest('ul').parent().parent().show().prev('a').addClass("prevHover");
        nnn = active.closest('ul').closest('div').prev().children('h3').children('a');
//крошки
        str0 = '<a href="/">Главная</a> /';
        str1 = '<a href="' + active.attr('href') + '">' + active.text() + '</a>';
        if (prevActive1.text()){separator = ' / '}else{separator = ''};
        str2 = '<a href="' + prevActive1.attr('href') + '">' + prevActive1.text() + '</a>' + separator;
        if (prevActive2.text()){separator = ' / '}else{separator = ''};
        str3 = '<a href="' + prevActive2.attr('href') + '">' + prevActive2.text() + '</a>' + separator;
        if (nnn.text()){separator = ' / '}else{separator = ''};
        str9 = '<a href="' + nnn.attr('href') + '">' + nnn.text() + '</a>' + separator;
        
        $('.breadcrumbs').html(str0 + ' ' + str9 + ' ' + str3 + ' ' + str2 + ' ' + str1);
    }
    
    
//    $('.w-title h3 a').hover(function(){
//      $('.leftMenu').hide(300);
//      $(this).parents('.w-title').next('.w-text').children('ul').show(300);
//    },function(){
//        //$(this).parents('.w-title').next('.w-text').children('ul').hide(500);
//    });
//    $('.leftMenu').hide(300);

});

