Nav_class = function() {};
Object.extend(Nav_class.prototype, Object.extend(new AjaxPro.AjaxClass(), {
	Indicar: function(seuNome, seuEmail, nomeAmigo, emailAmigo) {
		return this.invoke("Indicar", {"seuNome":seuNome, "seuEmail":seuEmail, "nomeAmigo":nomeAmigo, "emailAmigo":emailAmigo}, this.Indicar.getArguments().slice(4));
	},
	Votar: function(gostou, email, captcha) {
		return this.invoke("Votar", {"gostou":gostou, "email":email, "captcha":captcha}, this.Votar.getArguments().slice(3));
	},
	EsqueciSenha: function(email) {
		return this.invoke("EsqueciSenha", {"email":email}, this.EsqueciSenha.getArguments().slice(1));
	},
	IsLogado: function() {
		return this.invoke("IsLogado", {}, this.IsLogado.getArguments().slice(0));
	},
	Logar: function(email, senha) {
		return this.invoke("Logar", {"email":email, "senha":senha}, this.Logar.getArguments().slice(2));
	},
	Nome: function() {
		return this.invoke("Nome", {}, this.Nome.getArguments().slice(0));
	},
	Validar: function(legenda) {
		return this.invoke("Validar", {"legenda":legenda}, this.Validar.getArguments().slice(1));
	},
	Confirmar: function(nomeArquivo, legenda, aceitouTermos) {
		return this.invoke("Confirmar", {"nomeArquivo":nomeArquivo, "legenda":legenda, "aceitouTermos":aceitouTermos}, this.Confirmar.getArguments().slice(3));
	},
	url: '/fresh/ajaxpro/ASP.navegacaofotos_iframe_aspx,App_Web_ompsezih.ashx'
}));
Nav = new Nav_class();


