﻿$(document).ready(function(){	
 $('a.comment').toggle(function(){
  $(this).html('Скрыть форму ответа <img src="/assets/snippets/jot/templates/karand.png" width="26" height="20" alt="Ответить на комментарий" border="0" />');
  id = $(this).attr('id');  
  $('#form'+id).show();
  return false;
 },function (){
  $('#form'+id).hide();
  $(this).html('Ответить <img src="/assets/snippets/jot/templates/karand.png" width="26" height="20" alt="Ответить на комментарий" border="0" />');	
  return false;
 });
});
