window.addEvent('domready', function() {
	$('contact_form').addEvent('submit', function(e) {
		e.stop();

		//Empty the log and show the spinning indicator.
		// var log = $('log_res').empty().addClass('ajax-loading');
		$('spinner').removeClass('hide');

		this.set('send', {onComplete: function(response) { 
			$('spinner').addClass('hide');
			$('status_message').set('html', response).fade(1);
		}});
		//Send the form.
		this.send();
	});
});