$(function() {
	
	$('form[name="bookVan"]').submit(function() {
		var elemToCheck = $('input[name="email"]', this);
		if(elemToCheck.val() == '') { 
			alert('Please fill in you email or we cant get back to you!');
			elemToCheck.focus();
			return false;
		}
	});
});
