$(function () {

	$('#contactUs_form').validate({
		messages: {
			name: 'Please enter a name.',
			telephone: {
				required: 'Please enter a telephone number.',
				telephone: 'Please enter a valid telephone number.'
			},
			email_address: 'If you choose to supply an email address, please supply one in the correct format.'
		}
	});
});