/* SHIPPING FORMS */

// Sea Shipping

jQuery(document).ready(function(){
	
	$('#seaShippingForm').submit(function(){
	
		var action = $(this).attr('action');
		
		$("#sea-message").slideDown(750,function() {
		$('#sea-message').hide();
		
 		$('#submit')
			.after('<img src="images/ajax-loader.gif" class="loader" />')
			.attr('disabled','disabled');
		
		$.post(action, { 
			// shipper
			s_shippername: $('#s_shippername').val(),
			s_shipperaddress: $('#s_shipperaddress').val(),
			s_shippercity: $('#s_shippercity').val(),
			s_shipperstate: $('#s_shipperstate').val(),
			s_shipperzip: $('#s_shipperzip').val(),
			s_shipperemail: $('#s_shipperemail').val(),
			s_shipperphone: $('#s_shipperphone').val(),
			s_shipperssn: $('#s_shipperssn').val(),
			
			// cosignee
			s_c_name: $('#s_c_name').val(),
			s_c_address: $('#s_c_address').val(),
			s_c_phone: $('#s_c_phone').val(),
			
			//cargo
			s_cc_commodity: $('#s_cc_commodity').val(),
			s_cc_number: $('#s_cc_number').val(),
			s_cc_weight: $('#s_cc_weight').val(),
			s_cc_value: $('#s_cc_value').val(),
			s_cc_insurance: $('#s_cc_insurance').val(), //not required
			
			//dimensions
			s_d_length: $('#s_d_length').val(),
			s_d_width: $('#s_d_width').val(),
			s_d_height: $('#s_d_height').val(),
			s_d_restricted: $('#s_d_restricted').val(), //not required
			s_d_desc: $('#s_d_desc').val(), // not required
			
			//destination
			s_pickup: $('#s_pickup').val(),
			s_airport: $('#s_airport').val(),
			s_destination: $('#s_destination').val(),
			
			s_verify: $('#s_verify').val()
		},
			function(data){
				document.getElementById('sea-message').innerHTML = data;
				$('#sea-message').slideDown('slow');
				$('#seaShippingForm img.loader').fadeOut('slow',function(){$(this).remove()});
				$('#seaShippingForm #submit').attr('disabled',''); 
				if(data.match('success') != null) $('#seaShippingForm').slideUp('slow');
				
			}
		);
		
		});
		
		return false; 
	
	});
	
});
