jQuery(function($) {

 // $('.box .tree ul ul').find('div.active').parents('li.depth-0').addClass("active").children("ul").show();
  $('.box .tree ul ul').find('a.active').parents('li.depth-0').addClass("active").children("ul").show();
 
  $('div.node-type-product:last').css('border-bottom', 'none');
  
  $('.box .tree ul ul').find('ul').parent().children("div").css('font-weight', 'bold');
 
  $('.box .tree ul').find('li:first-child').addClass('first');
  $('.box .tree ul').find('li:last-child').addClass('last');

  $('.box .tree ul li div.depth-0').click(function(){
    if (!$(this).parent().hasClass("active")) {
      $('.box .tree li.depth-0').removeClass("active");
      $(this).parent().addClass("active");
      $('.box .tree ul li ul').slideUp();
      $(".box .tree ul ul ul").show();
      $(this).parent().children("ul").slideDown();
      return false;
    } else {
      return false;
    }
  })
});
