jQuery( function() {
    categoryStartup();
    });

function categoryStartup() {

  jQuery('.showHideLink.show').bind('click', categoryShowLocations);
  jQuery('.showHideLink.hide').bind('click', categoryHideLocations);
}

function categoryHideLocations() {
  jQuery('ul', jQuery(this).parent()).slideUp();
  jQuery('a.hide', jQuery(this).parent()).hide();
  jQuery('a.show', jQuery(this).parent()).show();
  id = jQuery(this).parent().get(0).id;
  id = id.replace('-container', '-links-display');
  document.cookie = id + "=closed;path=/";
}
function categoryShowLocations() {
  jQuery('ul', jQuery(this).parent()).slideDown();
  jQuery('a.hide', jQuery(this).parent()).show();
  jQuery('a.show', jQuery(this).parent()).hide();
  id = jQuery(this).parent().get(0).id;
  id = id.replace('-container', '-links-display');
  document.cookie = id + "=open;path=/";
}
