// JavaScript Document
window.addEvent('domready', function() {
	if ($('ajaxform'))
	$('ajaxform').addEvent('submit', function(e) {
		/**
		 * Prevent the submit event
		 */
		new Event(e).stop();
	 
		/**
		 * This empties the log and shows the spinning indicator
		 */
		var log = $('ajaxformresult');
		if (log) log=log.empty().addClass('ajax-loading');
	 
		/**
		 * send takes care of encoding and returns the Ajax instance.
		 * onComplete removes the spinner from the log.
		 */
		this.send({
			update: log,
			onComplete: function() {
				if (log) log.removeClass('ajax-loading');
			}
		});
	});
});