$(document).ready(function(){
	
	$("form#contat").validate({
		showErrors: function(errorMap, errorList) {
		},
		invalidHandler: function(form, validator) {
			alert(contat_campos);
		},
		submitHandler: function() {
			var query = $('form#contat').formSerialize();
			$.ajax({
				url: 'ajax/contato',
				data: query,
				type: 'POST',
				dataType: 'text',
				cache: false,
				beforeSend: function(){
					$('#contat_send').hide().after('<li id="contat_enviando" style="text-align:center"><img src="img/carregando.gif" alt="" /></li>');
				},
				error: function(){
					$('#contat_enviando').remove();
					$('#contat_send').fadeIn();
					alert(contat_erro);
				},				
				success: function(retorno){
					if ( retorno == '1' ){
						$('#contat_enviando').remove();
						$('#contat_send').fadeIn();
						alert(contat_ok);
						$('form#contat').trigger('reset');
					} else {
						$('#contat_enviando').remove();
						$('#contat_send').fadeIn();
						alert(retorno);
					}
				}
			});			
			return false;
		}
	});	
	
});