/* SHIPPING FORMS */

// Auto Shipping

jQuery(document).ready(function(){
	
	$('#autoShippingForm').submit(function(){
	
		var action = $(this).attr('action');
		
		$("#truck-message").slideDown(750,function() {
		$('#truck-message').hide();
		
 		$('#auto-submit')
			.after('<img src="images/ajax-loader.gif" class="loader" />')
			.attr('disabled','disabled');
		
		$.post(action, { 
			// shipper
			v_shippername: $('#v_shippername').val(),
			v_shipperaddress: $('#v_shipperaddress').val(),
			v_shippercity: $('#v_shippercity').val(),
			v_shipperstate: $('#v_shipperstate').val(),
			v_shipperzip: $('#v_shipperzip').val(),
			v_shipperemail: $('#v_shipperemail').val(),
			v_shipperphone: $('#v_shipperphone').val(),
			v_shipperssn: $('#v_shipperssn').val(),
			
			//cosignee
			v_c_name: $('#v_c_name').val(),
			v_c_address: $('#v_c_address').val(),
			v_c_phone: $('#v_c_phone').val(),
			
			//vehicle
			v_v_vin: $('#v_v_vin').val(),
			v_v_make: $('#v_v_make').val(),
			v_v_model: $('#v_v_model').val(),
			v_v_year: $('#v_v_year').val(),
			v_v_value: $('#v_v_value').val(),
			v_v_ins: $('#v_v_ins').val(),
			
			//dimensions
			v_v_length: $('#v_v_length').val(),
			v_v_width: $('#v_v_width').val(),
			v_v_height: $('#v_v_height').val(),
			v_v_restricted: $('#v_v_restricted').val(), //not required
			v_v_desc: $('#v_v_desc').val(), // not required
			
			//destination
			v_pickup: $('#v_pickup').val(),
			v_port: $('#v_port').val(),
			v_destination: $('#v_destination').val(),
			
			v_verify: $('#v_verify').val()
		},
			function(data){
				document.getElementById('truck-message').innerHTML = data;
				$('#truck-message').slideDown('slow');
				$('#autoShippingForm img.loader').fadeOut('slow',function(){$(this).remove()});
				$('#autoShippingForm #auto-submit').attr('disabled',''); 
				if(data.match('success') != null) $('#autoShippingForm').slideUp('slow');
				
			}
		);
		
		});
		
		return false; 
	
	});
	
});
