// JavaScript Document

$(document).ready(function(){
  $("h2.h_button a").click(function(event){
    event.preventDefault();
    $($(this).attr('href')).toggle("fast");
  });
});
