$(document).ready(function(){
  $('h4#genreT').click(function() {
      $('#genre').toggle('slow');
      $('#alpha').toggle('slow');
    return false;
  });
  $('h4#alphaT').click(function() {
      $('#alpha').toggle('slow');
      $('#genre').toggle('slow');
    return false;
  });
  $("h5#comment").click(function(){$("#newcomment").toggle("slow");return false});	
});

