

$(function() {
  // NitroSell Menu Expander
  $('a.link-department-select,a.link-department').each(function() {

    if($(this).attr("class") == 'link-department')
      $(this).nextAll("div.categoryblock:eq(0)").hide();

    $(this).click(function() {
      $("div.categoryblock").not( $(this).nextAll("div.categoryblock:eq(0)") ).slideUp();        
      $(this).nextAll("div.categoryblock:eq(0)").slideToggle();
      return false;
    });
  });
});
