jQuery(document).ready(function(){
	
	$('#contactform').submit(function(){
	
		var action = $(this).attr('action');
		
		$("#message").slideUp(0,function() {
		$('#message').hide();
		
 		$('#submit')
			.after('<img src="assets/ajax-loader.gif" class="loader" />')
			.attr('disabled','disabled');
		
		$.post(action, { 
			email: $('#email').val(),
			mothersFirst: $('#mothersFirst').val(),
			mothersLast: $('#mothersLast').val(),
			address1: $('#address1').val(),
			more: $('#more').val(),
			city: $('#city').val(),
			state: $('#state').val(),
			zip: $('#zip').val(),
			country: $('#country').val(),
			homePhone: $('#homePhone').val(),
			workPhone: $('#workPhone').val(),
			due_date: $('#due_date').val(),
			referral: $('#referral').val()

		},
			function(data){
				document.getElementById('message').innerHTML = data;
				$('#message').slideDown('slow');
				$('#contactform img.loader').fadeOut(0,function(){$(this).remove()});
				$('#contactform #submit').attr('disabled',''); 
				if(data.match('success') != null) $('#contactform').slideUp(0);
				
			}
		);
		
		});
		
		return false; 
	
	});
	
});
