jQuery(function($){ 
	$('form').submit(function(){
		$(':button', this).attr('disabled', 'disabled');
	});
});


