$(function(){
		// Create overlay and append to body:
	 $('<div id="overlay"/>').css({  
		position: 'fixed',      
		top: 0, 
		left: 0,
		width: '100%',
		height: $(window).height() + 'px', 
		background: 'white url(images/processing.gif) no-repeat center'    }).hide().appendTo('body'); 
		// Assign click function:
	$('#shipping').submit(function(){
				// SHOW overlay        
			$('#overlay').show();
			$('#overlay').html('<table border="0" width="100%" height="100%" style="margin-top:40px;"><tr><td align="center"><b>Processing...</b></td></tr></table>');
				// Retrieve data: 
			$.ajax({
				success: function(data){ 
					//onSuccess fill #ajax-box with response data:
					// HIDE the overlay:
					$('#overlay').hide();
					$('#overlay').html('');
					return true;
				} 
			});
	}); 
	
	$('#frmPayment').submit(function(){
				// SHOW overlay        
			$('#overlay').show();
			$('#overlay').html('<table border="0" width="100%" height="100%" style="margin-top:40px;"><tr><td align="center"><b>Processing...</b></td></tr></table>');
				// Retrieve data: 
			$.ajax({
				success: function(data){ 
					//onSuccess fill #ajax-box with response data:
					// HIDE the overlay:
					$('#overlay').hide();
					$('#overlay').html('');
					return true;
				} 
			});
		}); 
	$('#overlay').hide();
});