$(function() {
	$('.error').hide();
	$('input.text-input').css({backgroundColor:"#FFFFFF"});
	$('input.text-input').focus(function(){
		$(this).css({backgroundColor:"#EEF1F8"});
	});
	$('input.text-input').blur(function(){
		$(this).css({backgroundColor:"#FFFFFF"});
	});
	$(".button").click(function() {
		$('.error').hide();
		var name = $("input#name").val();
		if (name == "") {
			$("div#name_error").show();
			$("input#name").focus();
			return false;
		}
		var email = $("input#email").val();
		if (email == "") {
			$("div#email_error").show();
			$("input#email").focus();
			return false;
		}
		var phone = $("input#phone").val();
		if (phone == "") {
			$("div#phone_error").show();
			$("input#phone").focus();
			return false;
		}
		var dataString = 'name='+ name + '&email=' + email + '&phone=' + phone;
		$.ajax({
			type: "POST",
			url: "/processMail.php",
			data: dataString,
			success: function() {
				$('#contactForm').html("<div id='message'></div>");
				$('#message').html("<p>Thank you for submitting your details.<br />We will be in touch soon.</p>").hide().fadeIn(1000);
			}
		});
	return false;
	});
});
