addNamespace("Authentication");
Authentication_class = Class.create();
Object.extend(Authentication_class.prototype, Object.extend(new AjaxPro.AjaxClass(), {
	verifySessionLoggedIn: function() {
		return this.invoke("verifySessionLoggedIn", {}, this.verifySessionLoggedIn.getArguments().slice(0));
	},
	checkLoginStatus: function() {
		return this.invoke("checkLoginStatus", {}, this.checkLoginStatus.getArguments().slice(0));
	},
	doLogout: function() {
		return this.invoke("doLogout", {}, this.doLogout.getArguments().slice(0));
	},
	AuthenticateShopper: function(email, password) {
		return this.invoke("AuthenticateShopper", {"email":email, "password":password}, this.AuthenticateShopper.getArguments().slice(2));
	},
	initialize: function() {
		this.url = '/ajaxpro/Authentication,App_Code.m5hpdaiz.ashx';
	}
}));
Authentication = new Authentication_class();

