$(function(){$('.delete-comment').live('click',function(e){e.preventDefault();$('#'+'comment-delete-'+$(this).attr('href')).css('display','block');});$('#article_comments .no').live('click',function(e){e.preventDefault();$(this).parent().parent().css('display','none');});$('#article_comments .yes').live('click',function(e){e.preventDefault();$('#comment-table-'+$(this).attr('href').split('#').pop()).css('display','none');$.get($(this).attr('href'));});$('.comment-submit').live('click',function(e){e.preventDefault();el=$(this).parents('form:first');var comment=el.find('.default-text');var submit=el.find('.button-login');to_post=comment.val();if(to_post==comment.attr('default-text')||!to_post.length){return false;}
comment.val('Sending comment..');submit.toggle();$.post(el.attr('action'),{comment:to_post},function(data){comment.val(comment.attr('default-text'));submit.toggle();callback=el.find("input[type='hidden']");if(callback){$($('#'+callback.val()).prepend(data))}});});});
