
function hide_all(){
  $('#content h2').hide();
  $('#content h2+div').hide();
  $('#content h3+div').hide();
}


function show_act(){
  hide_all();
  $('#content h2.sec-act').show().next().show();
}
function show_nsw(){
  hide_all();
  $('#content h2.sec-nsw').show().next().show();
}
function show_nt(){
  hide_all();
  $('#content h2.sec-nt').show().next().show();
}
function show_qld(){
  hide_all();
  $('#content h2.sec-qld').show().next().show();
}
function show_sa(){
  hide_all();
  $('#content h2.sec-sa').show().next().show();
}
function show_vic(){
  hide_all();
  $('#content h2.sec-vic').show().next().show();
}
function show_wa(){
  hide_all();
  $('#content h2.sec-wa').show().next().show();
}
function show_tas(){
  hide_all();
  $('#content h2.sec-tas').show().next().show();
}

$(function(){
  $('#content h2').hide();
  $('#content h2+div').hide();
  $('#content h3+div').hide();
  $('#content div:not(.holder)').css('margin-left','2em');
  $('#content h2').css('font-size','12pt');
  $('#content h3').css('cursor','pointer').click(function(){
    $('#content h3').not(this).next().slideUp(1);
    $(this).next().slideToggle(1);
  });

});