$(document).ready(function(){
$('#contact_form').submit(function() {
$('span.error', this).remove();
var error = 0;
$('.required', this).each(function() {
if($(this).val() == '') {
error++;
$(this).after('This field is required');
}
});
if($('#captcha').val() != 'ycvmvu') {
$('#captcha').after('This field must match the code in the image');
error++;
}
if(error > 0) {
alert('Please fill in all required fields.');
return false;
}
});
});