jQuery(document).ready(function() {
  jQuery('#comment_form').hide();
  jQuery('a.comment').click(function() {
    jQuery('#comment_form').fadeIn('slow');
    });
});