$(document).ready(function(){
	$('input.submit').click(function(){
		if (typeof DONT_PROCESS != 'undefined' && DONT_PROCESS) {
			DONT_PROCESS = undefined;
			return;
		}
		$(this).hide();
		$('span.submit').hide();
		$('#submit-processing').show();
	});

	$('input.continue').click(function(){
		if (typeof DONT_PROCESS != 'undefined' && DONT_PROCESS) {
			DONT_PROCESS = undefined;
			return;
		}
		$(this).hide();
		$('span.continue').hide();
		$('#continue-processing').show();
	});

	$(':input:visible:enabled:first').focus();
});
