$(function(){
	$('form#contact-form').submit(function() {
		return check_contact_form(this);
	});
	$('form#home-value-form').submit(function() {
		return check_contact_form(this);
	});
});

function check_contact_form(form) {
	errors = '';

	if( form.fname.value == '' ) {
		errors += "Please enter your first name\n";
	}
	if( form.lname.value == '' ) {
		errors += "Please enter your last name\n";
	}
	if( form.email.value == '' ) {
		errors += "Please enter your email address\n";
	}
	if( form.phone.value == '' ) {
		errors += "Please enter your phone number\n";
	}
	if( form.captcha_value.value == '' ) {
		errors += "Please enter the text from the box in the bottom field\n";
	}

	if( errors ) {
		alert( errors );
		return false;
	}
	return true;
}
