$(document).ready(function(){
    $("#emailForm").validate();
    $("#emailForm").submit(function(event) {
        $('#submitBtn').val('Sending...');
        $('#submitBtn').attr('disabled', 'disabled');
        $.post("/quick_contact.php", 
            $(this).serialize(),
            function(data) {
                if(data.successful == true) {
                    //showFormMessage()
					$("#status").text("Thank you for your request, we will contact you shortly!").fadeIn("slow");
                    var rndNum = Math.floor(Math.random() * 1001);
                    $('#imgCaptcha').attr('src', '../../captcha.php?a=' + rndNum);
                    $('#msgArea').val('');
                    $('#msgArea').trigger('blur');
                    $('#submitBtn').val('Submit');
                    $('#submitBtn').removeAttr('disabled');
                } else {
                    //showFormMessage()
                    var msg_err = data.errorDescription;
                    $("#status").text(msg_err).show();
                    $('#submitBtn').val('Submit');
                    $('#submitBtn').removeAttr('disabled');
                    return false;
                }
            },
            'json'
        );
        
        event.preventDefault();
    });
});
/* 
function showFormMessage(msg,) {
    
    $('#blockId').html(msg);
} */
