jQuery( function() {
		// check if there is a submit button
		jQuery('#Form_Form_action_process').bind('click', function(e){
		      this.disabled = true;
		      jQuery(this).addClass('inactive');
		      this.form.submit();
		      return false;
		    });
	}
);