$(document).ready(function(){
  $('form.comment_form').each(function(){
    if ($(this).hasClass('comment_top')) return;
    $(this).hide().prev('ul.ctools').append('<li><a href="." class="comment_show">Reply</a></li>');
  });

  $('a.comment_show').click(function(){
    $(this).parent().parent().next('form.comment_form').show();
    return false;
  });
});