var Actstream=Actstream||{};Actstream.Follow=function(a,b){this._button=a;this._is_place=b;this._button.live("click",$.proxy(this._process,this))};Actstream.Follow.prototype={_process:function(){button_id=this._button.attr("id");process_url="/actstream/"+button_id.split("_").join("/")+"/";$.ajax({type:"GET",dataType:"json",url:process_url,success:$.proxy(this._handleResponse,this)})},_handleResponse:function(b,c,a){if(a.status==201){$(this._button).fadeOut("fast");this._setIdAction("unfollow")}if(a.status==204){$(this._button).fadeOut("fast");this._setIdAction("follow")}},_setIdAction:function(a){button_id=this._button.attr("id").split("_");button_id[0]=a;this._button.attr("id",button_id.join("_"))}};
