$(document).ready(function(){
  
  $("div.collapsable").hide();
  $(".toggleLinkHide").hide();
  
  $("a.toggleLink").click(function(){

    $(this).parent().prev().show();
    
    if( $(this).siblings(".toggleLinkHide").length > 0 ) {
      $(this).siblings(".toggleLinkHide").show();
      $(this).hide();
    } else {
      $(this).parent().hide();
    }
    
    return false;
  });
  
  $(".toggleLinkHide").click(function(){
  
    $(this).parent().prev().hide();
  
    $(this).siblings(".toggleLink").show();
    $(this).hide();
    
    return false;
  });
});