// Contact Form
jQuery(document).ready(function(){
	
	$('#contactForm').submit(function(){
	
		var action = $(this).attr('action');
		
		$("#message").slideDown(750,function() {
		$('#message').hide();
		
 		$('#submit')
			.after('<img src="images/ajax-loader.gif" class="loader" />')
			.attr('disabled','disabled');
		
		$.post(action, { 
			name: $('#name').val(),
			email: $('#email').val(),
			subject: $('#subject').val(),
			comments: $('#comments').val(),
			verify: $('#verify').val()
		},
			function(data){
				document.getElementById('message').innerHTML = data;
				$('#message').slideDown('slow');
				$('#contactForm img.loader').fadeOut('slow',function(){$(this).remove()});
				$('#contactForm #submit').attr('disabled',''); 
				if(data.match('success') != null) $('#contactForm').slideUp('slow');
				
			}
		);
		
		});
		
		return false; 
	
	});
	
});


// Quote Form
jQuery(document).ready(function(){
	
	$('#getquoteForm').submit(function(){
	
		var action = $(this).attr('action');
		
		$("#quote-message").slideDown(750,function() {
		$('#quote-message').hide();
		
 		$('#submit')
			.after('<img src="images/ajax-loader.gif" class="loader" />')
			.attr('disabled','disabled');
		
		$.post(action, { 
		
			// required fields
			q_name: $('#q_name').val(),
			q_lastname: $('#q_lastname').val(),
			q_email: $('#q_email').val(),
			q_phone: $('#q_phone').val(),
			q_cell: $('#q_cell').val(),
			q_date: $('#q_date').val(),
			q_h: $('#q_h').val(),
			q_w: $('#q_w').val(),
			q_d: $('#q_d').val(),
			q_weight: $('#q_weight').val(),
			q_quantity: $('#q_quantity').val(),
			q_cbm: $('#q_cbm').val(),
			q_cbw: $('#q_cbw').val(),
			q_statefrom: $('#q_statefrom').val(),
			q_portfrom: $('#q_portfrom').val(),
			q_cityfrom: $('#q_cityfrom').val(),
			q_zipfrom: $('#q_zipfrom').val(),
			q_stateto: $('#q_stateto').val(),
			q_portto: $('#q_portto').val(),
			q_cityto: $('#q_cityto').val(),
			q_zipto: $('#q_zipto').val(),					
			verify: $('#verify').val(),
			
					//not required fields
		
			q_company: $('#q_company').val(),
			q_fax: $('#q_fax').val(),
			q_cargo: $('#q_cargo').val(),
			q_description: $('#q_description').val(),
			q_movetype: $('#q_movetype').val(),
			q_pieces: $('#q_pieces').val(),
			q_dimension: $('#q_dimension').val(),
			q_countryfrom: $('#q_countryfrom').val(),
			q_countryto: $('#q_countryto').val()
		},
			function(data){
				document.getElementById('quote-message').innerHTML = data;
				$('#quote-message').slideDown('slow');
				$('#getquoteForm img.loader').fadeOut('slow',function(){$(this).remove()});
				$('#getquoteForm #submit').attr('disabled',''); 
				if(data.match('success') != null) $('#getquoteForm').slideUp('slow');
				
			}
		);
		
		});
		
		return false; 
	
	});
	
});