$(function(){var a="/people/%s/follow?%d",b="/people/%s/unfollow?%d";function c(e,d){$.ajax({url:e.replace("%d",Math.random()),type:"POST",data:{},success:function(){d.fadeIn("fast")}})}$("p.follow").each(function(){var e=$(this).find("span.username").text(),d={is_following:$(this).find("span.is_following"),not_following:$(this).find("span.not_following")};d.is_following.find("a").click(function(f){f.preventDefault();d.is_following.fadeOut("fast",function(){c(b.replace("%s",e),d.not_following)})});d.not_following.find("a").click(function(f){f.preventDefault();d.not_following.fadeOut("fast",function(){c(a.replace("%s",e),d.is_following)})})})});