﻿jQuery(document).ready(function(){	
 jQuery('a.comment').toggle(function(){
  jQuery(this).html('Скрыть форму ответа &uarr;');
  id = jQuery(this).attr('id');  
  jQuery('#form'+id).show();
  return false;
 },function (){
  jQuery('#form'+id).hide();
  jQuery(this).html('Ответить &darr;');	
  return false;
 });
});