/*
jQuery(document).ready(function(){

$(function() {
$(".submit").click(function() {
var email = $("#email").val();
var dataString = 'email='+ email;

if(email=='' || email === 'enter email address' ) {
	$('.success').fadeOut(200).hide();
	$('.error').fadeOut(200).show();
}

else
{
	$.ajax({
	type: "POST",
	url: "mail.php",
	data: dataString,
	success: function(){
	$('#email').fadeOut(200).hide();
	$('.success').fadeIn(200).show();
	$('.error').fadeOut(200).hide();
	}
	});
}
return false;
});
});


});
*/
