DoCongratulationAjax = Class.create();
DoCongratulationAjax.prototype = {

	id: null,
	page: projectUrl +'/member/social/doCongratulation',

	execute: function(object) {

	}

}
Object.extend(DoCongratulationAjax.prototype, CommonAjax);

var FriendListAjax = Class.create();
FriendListAjax.prototype = {

	id: 'friendList',
	page: projectUrl +'/member/social/friendList',

	execute: function(object) {
		this.content();
	}

}
Object.extend(FriendListAjax.prototype, CommonAjax);

var FriendEditAjax = Class.create();
FriendEditAjax.prototype = {

	id: 'friendEdit',
	page: projectUrl +'/member/social/friendEdit',

	execute: function(object) {
		this.content();
	}

}
Object.extend(FriendEditAjax.prototype, CommonAjax);

DoFriendEditAjax = Class.create();
DoFriendEditAjax.prototype = {

	id: 'doFriendEdit',
	page: projectUrl +'/member/social/doFriendEdit',

	execute: function(object) {

	}

}
Object.extend(DoFriendEditAjax.prototype, CommonAjax);

DoFriendChangeAjax = Class.create();
DoFriendChangeAjax.prototype = {

	id: 'doFriendChange',
	page: projectUrl +'/member/social/doFriendChange',

	execute: function(object) {

	}

}
Object.extend(DoFriendChangeAjax.prototype, CommonAjax);

DoFriendCreateAjax = Class.create();
DoFriendCreateAjax.prototype = {

	id: null,
	page: projectUrl +'/member/social/doFriendCreate',

	execute: function(object) {

	}

}
Object.extend(DoFriendCreateAjax.prototype, CommonAjax);