Utils={};Utils.JQuery={showMensagem:function(elemento1,elemento2,mensagem){$(elemento1).fadeIn(100);window.setTimeout(function(){$(elemento1).fadeOut()},3000);$(elemento2).css({top:'-300px',display:''});$(elemento2+" p").html(mensagem).slideDown('show');$(elemento2).animate({top:'30%'},400);window.setTimeout(function(){$(elemento2).animate({top:'-300px'},400,'linear')},3000)},envioFormulario:function(formulario,callback,callback2){var msg="";$('.requerido').each(function(){if(!$(this).val()||($(this).attr("class")=="requerido email"&&!Utils.JQuery.isEmail($(this).val()))){msg+="<span>"+$(this).attr("rel")+"</span><br />"}Utils.JQuery.setElemento(callback);Utils.JQuery.showMensagem(callback,callback2,msg)});if(msg.length>0){return false}},isEmail:function(email){var pattern=new RegExp("([a-z0-9_.-]+)@([a-z0-9]+){2,}([.])([a-z0-9.]+){2,}");if(pattern.test(email)){return true}else{return false}},setElemento:function(elemento){$(elemento).css({display:""})},fechaForm:function(elemento1,elemento2){$(elemento1).css({display:"none"});$(elemento2).css({display:"none"})}}
