// JavaScript Document

window.addEvent('domready', function(){

	$('SurveyForm').addEvent('submit', function(e) {
	
		$('SurveyForm').addClass('form-hidding');
		$('encuestas').addClass('surv-loading');
		new Event(e).stop();
		
		 /* send takes care of encoding and returns the Ajax instance.
		 *  onComplete removes the spinner from the log. */
		 
		this.send({
				update:  $('encuestas'), 
				onComplete: function() {
					$('encuestas').removeClass('surv-loading');
					$('encuestas').addClass('surv-ok');
				}
			});
	});
});