(function($){

 $(function(){

		$("#sendForget").click(function(){
		
			if(validaForm()){
				loading(1);
				
				$.ajax({
					type: "GET",
					url: "scripts/rpc/RPC_cadUsr.php",
					data: "_par=reqEmail:@:"+$("#email").val(),
					dataType: "json",
					success: function(ret){
						loading(0);
						
						if(ret['sucesso'] == '1'){
							$("#retornoOK").css("display", "block");
							setTimeout(function(){
								$("#retornoOK").fadeOut(7000);
							}, 2000);
						}else{
							$("#retornoError h4").html(ret['msg']);
							$("#retornoError").css("display", "block");
							setTimeout(function(){
								$("#retornoError").fadeOut(7000);
							}, 2000);
						}
						
					}
				});
				
			} else { //senão validou rola o scroll pro topo da página
				$(window).scrollTop(0);
			}
		});
		
	});
	
})(jQuery);

//jQuery.noConflict();

