 $(document).ready(function(){
   $(".explanation-head a").click(function(){
      var targetid = this.id.replace("_button", "");
      var hidden = $(".explanation-body:visible").slideUp("slow")      
      $("#"+targetid+":hidden").slideDown("slow"); //XXX The not does not work      
   });
 });
