$(document).ready(function() {

  $('a.collapsible.active').livequery('click', function(event) {
    $(this).removeClass("active");
    var href = $(this).attr("href");
    $(this).find('span.response').html("Show");
    $(href).hide();
    return false;
  });


  $('a.collapsible:not(.active)').livequery('click', function(event) {
    $(this).addClass("active");
    var href = $(this).attr("href");
    $(href).show();
    $(this).find('span.response').html("Hide");
    return false;
  });

  // Hide any elements that are not hidden but should be
  $('a.collapsible:not(.active)').each(function(){
    var href = $(this).attr("href");
    $(href).hide();
  });
  
});

