$(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() {
		var email = $("input#signupEmail").val();
		var dataString = 'signupmail=' + email;
		$.ajax({
			type: "POST",
			url: "/processMail.php",
			data: dataString,
			success: function() {
				$('#signUpForm').html("<div id='message'></div>");
				$('#message').html("<p>Thank you for subscribing to our email newsletter.  You'll receive all the latest offers and news about our fabrics and additional services.  We promise to never pass on your details to anyone else.</p>").hide().fadeIn(1000);
			}
		});
	return false;
	});
});

