$(document).ready(function(){
	$("#newslettersubmit").click(function(){
		if(!isEmail($("#email").val())){
			alert("Please enter your email");
		} else {
			$.ajax({
				type: "POST",
				url: "/ajax/newsletter.php",
				data: "email=" + $("#email").val(),
				success: function(msg){
					if(window.location.href.indexOf('subscribe') > -1){
						$("#pagecontent").text("Thank you for subscribing to the Peepshow Newsletter.");
						$("#newsletter").css({display: "none"});
					} else {
						$("#newsletter").html("<img src='/images/success.png' style='margin-top: 7px;' />");
					}
				}
			});
		}
	});
});

function isEmail(email){
	if(email.match(/^([a-z]+[\w-]*\.?)+@([\w-]+\.)+[a-z]{2,4}$/i)) {
		return true;
	} else {
		return false;
	}
}
