$('#quick_apply').scrollFollow();

function quick_apply() {
    var errors = false;
    
    if ($('#FirstName').val() == "") {
        alert('Uh Oh! You must enter your first name!');
        return;
    }
    
    if ($('#Surname').val() == "") {
        alert('Uh Oh! You must enter your surname!');
        return;
    }
    
    if ($('#PhoneNumber').val() == "") {
        alert('Uh Oh! You must enter your phone number!');
        return;
    }
    
    $('#quick_apply_form').submit();
}