( function($) {
	$.sendMail = function(button, form) {
		$(button).attr("disabled", "disabled");
		$.getScript('contactMail.php?' + $(form).serialize(), function() {
			$(button).removeAttr("disabled");
		});
		form.reset();
	}
})(jQuery);