// prepare the form when the DOM is ready 
$(document).ready(function() { 
						   
	$('#formContato').ajaxForm({ 
		dataType:  'json', 
		success :   processJson 
	}); 
	
	$("#fone").mask("(99) 9999-9999");
	$("#cep").mask("99999-999");
    
    $('#Resultado').hide();

	
});

function processJson(data) {
	$('#Resultado').show();
	$('#Resultado').html(data.msg);
	
	if( data.result=='true' ){
		$('#formContato')[0].reset();
	}
    else
    {
        alert("Foi encontrado alguma(s) inconsistência(s) nas informações, favor verificar acima.");
    }
	
}
