$(function() {
	$("#contractor_incomeprotection").submit(function (evt) {
		var required_fields;
		var form_message_heading, form_message_prefix, form_message_suffix;
		
		// MARK:
		// Start making your changes for each form here.
		required_fields = ["realname", "email", "telephone"];
		form_message_heading = "<h2>Oops</h2>";
		form_message_prefix = "<p>There was a problem sending your message. Please check the errors below and re-submit the form.</p>";
		form_message_suffix = "<p>If you keep seeing this message, please email us at <a href=\"mailto:info@contractormoney.co.uk\" title=\"Let us know there's a problem\">info@contractormoney.co.uk</a>, so we can remedy the problem.</p>";
		
		// Stop making your changes here.
		validateForm(evt, this, required_fields, form_message_heading, form_message_prefix, form_message_suffix);
	}); // submit
});