$(document).ready(function(){
    $('#form_imoveis_reclame').submit(function(){
        if ($('#nome2').val() == '' || $('#nome2').val() == 'Nome:' || $('#nome2').val().length < 5) {
            alert('Nome - Campo obrigatório, exige mais de 5 caracteres.');
            $('#nome2').focus();
            return false;
        } else if ($('#email2').val() == '' || $('#email2').val() == 'E-mail:' || !(/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test($('#email2').val()))) {
            alert('E-mail - Campo obrigatório, exige E-mail válido.');
            $('#email2').focus();
            return false;
        } else
            return true;
    });
})
