$(function(){
	
	//Do what we need to when form is submitted.	
	$('#submit-button').click(function(){
	
	//Setup any needed variables.
	var input_name = $('#form_name').val(),
		input_email = $('#form_email').val(),
		input_subject = $('#form_business').val(),
		input_message = $('#form_enquiry').val(),
		response_text = $('#response');
		//Hide any previous response text 
		response_text.hide();
		
		//Change response text to 'loading...'
		response_text.html('Loading...').show();
		
		//Make AJAX request 
		$.post('http://www.colemansremovals.co.uk/includes/formmail.php', {recipients: 'info@colemansremovals.co.uk', Subject: 'Contact from Colemans Removals website', mail_options: 'Exclude=email;realname;submit', Name: input_name, Email: input_email, Business: input_subject, Message: input_message}, function(data){
			response_text.html(data);
		});
		
		//Cancel default action
		return false;
	});
	
	$('#quote-button').click(function(){
	
	//Setup any needed variables.
	var input_name = $('#form_full_name').val(),
		input_email = $('#form_email_address').val(),
		input_telephone = $('#form_telephone').val(),
		input_size = $('#form_house_size').val(),
		input_moving_from = $('#form_moving_from').val(),
		input_moving_to = $('#form_moving_to').val(),
		input_distance = $('#form_distance').val(),
		response_text = $('#response2');
		//Hide any previous response text 
		response_text.hide();
		
		//Change response text to 'loading...'
		response_text.html('Loading...').show();
		
		//Make AJAX request 
		$.post('http://www.colemansremovals.co.uk/includes/formmail.php', {recipients: 'info@colemansremovals.co.uk', Subject: 'Quote from Colemans Removals website', mail_options: 'Exclude=email;realname;submit', Name: input_name, Email: input_email, Telephone: input_telephone, Size: input_size, From: input_moving_from, To: input_moving_to, Distance: input_distance}, function(data){
			response_text.html(data);
		});
		
		//Cancel default action
		return false;
	});
	
	
});
