function join_fanclub (page) {
	var aj = new Ajax.Request ("/wp-content/plugins/fanclub/ajax.php",
		{
			method: "get",
			parameters: {
				action: 'join',
				page:page
			},
			onSuccess: function (originalRequest) {
				var json = originalRequest.responseJSON;
				$("fandialog").update(json.message);
				$("fangallery").update(json.gallery);
			}.bind(this)
		});
}

function leave_fanclub (page) {
	var aj = new Ajax.Request ("/wp-content/plugins/fanclub/ajax.php",
		{
			method: "get",
			parameters: {
				action: 'leave',
				page:page
			},
			onSuccess: function (originalRequest) {
				var json = originalRequest.responseJSON;
				$("fandialog").update(json.message);
				$("fangallery").update(json.gallery);
			}.bind(this)
		});
}

