$(document).ready(function(){
  $("#left h1 + .scat").addClass("hidden");
  
  $("#left h1").click(function(event) {
    if($(this).next().hasClass("hidden")) {
      $("#left h1 + .scat").addClass("hidden");
      $("#left h1 + .scat").hide("slow");
      $(this).next().show("slow");
      $(this).next().removeClass("hidden");
    }
    else {
      $(this).next().addClass("hidden");
      $(this).next().hide("slow");
    }
    
    //$(this).next().toggle("slow");
  })
});