			$().ready(function() {
				// validate the comment form when it is submitted
				$("#friendly_contact_form").validate({
					debug: true,
					errorElement: "h5",
					errorPlacement: function(error, element) {
						error.appendTo( element.parent() );
					},
					submitHandler: function(form) { $(form).ajaxSubmit(); }
				});

			});