$(document).ready(function(){$(".rowdeleted .comment,.rowbury .comment").hide().each(function(){extra=$(this).find(".hidereason").html();$(this).find(".hidereason").remove();$(this).before("<p><a href='#' class='togglecomment'>View comment</a> <em>"+extra+"</em></p>");});$(".togglecomment").toggle(function(){$(this).html("Hide comment");$(this).parent().next().slideDown();},function(){$(this).html("View comment");$(this).parent().next().slideUp();});$(".tablecomments .reply").click(function(){$("#commentreply input[name=replyid]").val($(this).attr("rel"));});});commentKarma=function(comment,response){if(response['success']){karma=parseInt(comment.parent().find(".karma").html().split(" ",1))+response['karma'];comment.parent().find(".karma").html((karma==1?"+1 vote":(karma>1?"+"+karma+" votes":karma+" votes")));}else if(response['error']){comment.parent().find(".karma").html(response['text']);}}