function contacteren() {
    $.ajax({
        type: 'POST',
        url: 'pages/contact/ajax_contact.php',
        data: $('#frm_contact').serialize() + '&action=contacteren',
        dataType: 'json',
        beforeSend: function() {
            clearAllFormErrors();
        },
        success: function(json) {
            var status = json['status'].status;
            if (status == 'error') {
                for (var i = 0; i < json['errors'].length; i++) {
                    var veld = json['errors'][i].field;
                    var msg = json['errors'][i].msg;
                    $('#error_'+veld).html(msg);
                }
            } else {
                $('#info').html('<span class="title">Uw aanvraag werd verzonden.</span><p>Wij nemen spoedig contact met u op.</p>')
            }
        }
    });
}

function clearAllFormErrors() {
    $('#error_naam').html('');
    $('#error_straat').html('');
    $('#error_huisnummer').html('');
    $('#error_provincie').html('');
    $('#error_postcode').html('');
    $('#error_gemeente').html('');
    $('#error_telefoon').html('');
    $('#error_fax').html('');
    $('#error_email').html('');
    $('#error_website').html('');
    $('#error_bericht').html('');
}

