YAHOO.namespace('YAHOO.modules.user.home');
// Constructor
YAHOO.modules.user.home.Page = function(config) {
	this.proxy = 'home_proxy.php';
	YAHOO.modules.user.home.Page.superclass.constructor.call(this, config);
}
// Extend
YAHOO.extend(YAHOO.modules.user.home.Page, YAHOO.lib.Page, {
	// Create controls
	createControls: function(config) {
		YAHOO.modules.user.home.Page.superclass.createControls.call(this, config);
		this.createRegisterModeForm();
	}, 
	// Create Register Mode Form
	createRegisterModeForm: function() {
		this.form = YAHOO.modules.user.home.RegisterModeForm.create('registerMode', {
			page: this, 
			proxy: this.proxy, 
			messager: true
		});
	}
})