/* credits to http://www.300pixels.org/ */
$(function() {
	$("#thank_you").hide();
	$('.error').hide();
	$(".sendButton").click(function() {
		$('.error').hide();
		var email = $("input#email_adress").val();
		if (email == "" || !(/^([A-Za-z0-9_\-\.])+\@([A-Za-z0-9_\-\.])+\.([A-Za-z]{2,4})$/.test(email))){
			$("p.error").show();
			return false;
	    }
		var dataString = 'email_adress='+ email;
		$.ajax({
			type: "POST",
			url: "process.php",
			data: dataString,
			success: function() {
				$('#wunschformat_subscribe_form').hide();
				$("#thank_you").show();			}
		});
		return false;
	});
});
