/*CONTACT SBS MAILER*/
window.addEvent('domready', function(){
	$('contactform').addEvent('submit', function(e) {
		/**
		 * Prevent the submit event
		 */
		new Event(e).stop();
	 
		/**
		 * This empties the log and shows the spinning indicator
		 */
		var status = $('status').empty().addClass('sending');
	 
		/**
		 * send takes care of encoding and returns the Ajax instance.
		 * onComplete removes the spinner from the log.
		 */
		document.contactform.button.disabled = true;
		this.send({
			update: status,
			onComplete: function() {
				status.removeClass('sending');
				document.contactform.button.disabled = false;
			}
		});
	});
});
		
