$().ready(function(){$("a.voting").each(function(i){$(this).click(function(e){e.preventDefault();var thisUrl=this.href;var container=$(this).parent().parent().find('.votes');$.post(thisUrl,{rating:$(this).html()},function(json){json=eval('('+json+')');var result=[json.score.score,' √'];$(container).html(result.join(''));});});});$("li.report a").each(function(i){$(this).click(function(e){e.preventDefault();var thisUrl=this.href;var container=$(this).parent();$.post(thisUrl,{rating:$(this).html()},function(json){$(container).prepend("<b>Noted</b>");});});});});