$(document).ready(function(){
	$(":checkbox.ajax_change_follow_state").click(function() {
		loader = $(this).siblings("img.loading");
		follow_status = $(this).siblings("span.followtext");
		loader.show()
		
		follow_state 	= $(this).attr("checked")?'on':'off';
		obj_uid 		= $(this).attr("obj_uid");
		page 			= $(this).attr("page");
		
		data = { obj_uid : obj_uid, notify_user : follow_state, follow_type : page};
		$.post("/user/ajaxUpdateNotifyUserState", data, function(textStatus){
			if(textStatus!="Follow" && textStatus!="Unfollow")
				alert("There was an error, please refresh the page and try again. Sorry about that.");
			else{
				if(follow_status != null)
					follow_status.text(textStatus);
				loader.hide();
			}
		});
	});
});