$(document).ready(function() { 
    var options = { 
        success:       showResponse  // post-submit callback 
    }; 
 
    $('#contatoForm').submit(function() {
        if (
            $("#nome").val() == "NOME" ||
            $("#email").val() == "EMAIL" ||
            $("#empresa").val() == "EMPRESA" ||
            $("#website").val() == "WEBSITE" ||
            $("#telefone").val() == "TELEFONE"
            ) {
                    alert("Por favor, preencha todos os campos corretamente.");
        } else {
            $(this).ajaxSubmit(options);
        }
        return false;
    }); 
}); 
 
function showResponse(responseText, statusText)  { 
    alert('Email Enviado! Em breve entraremos em contato.')
} 