function followJustUnfollow(){
this.currentTimeoutId = 0;
var selfRef = this;
this.initialize = function(){
$(function(){
	if($("#followThanksDiv").length>0){
		$.post("/unfollow_followJustUnfollow.html",{dummy:""},function(response){decideFollowDivDisplay(response);},"json");
	}
})

function decideFollowDivDisplay(response){
	if(response.isFollow){
	}
}
}
}


