$(function(){var e="/images/plinky_responses/icon_star_blue.png",d="/images/plinky_responses/icon_star_gray.png",c="/images/plinky_responses/icon_star_empty.png",a="/answers/%s/favorite?%d",b="/answers/%s/unfavorite?%d";$("a[class*=favors:]").each(function(){this.response_id=this.className.match(/favors:(.+) /)[1];this.is_favorite=this.className.match(/favored:(yes|no)/)[1]=="yes"?true:false;$(this).click(function(f){f.preventDefault();$(this).blur().fadeOut("fast",function(){var g=this;$.ajax({url:(this.is_favorite?b:a).replace("%s",this.response_id).replace("%d",Math.random()),type:"POST",data:{},success:function(){g.is_favorite=!g.is_favorite;$(g).find("img").attr("src",g.is_favorite?e:c);if(g.is_favorite){$(g).find("span").text("Unstar this ")}else{$(g).find("span").text("Star this ")}$(g).fadeIn("fast")}})})})})});
