/*************************************Subscribe******************************/

$(function() {
	if ($("div#WLsubscribe").length) { //check to see if subscribe is on page
		//$("#WLsub_form").validate({rules: { WLsub_email: { required: true, email: true } } } ); // Can't get this to work - ARSE!
		if (!$("input.WLuse_mailchimp").length) {
			$("#WLsub_send").click(function() {
				
					$("#WLsub_send").attr('disabled','disabled');
					$.ajax({
						url: '/scripts/ajax/subscribe_submission.php',
						data: {'sub_email': $("#WLsub_email").val()},
						success: function(data) {
							subscribe_response(data)
						}
					});
				
				return false;
			});
		}
	}
});

function subscribe_response(data) {
	if (data=='ok') {
		$("#WLsub_form").slideUp();
		$("#WLsub_response").append('Thank you for subscribing');
	} else {
		$("#WLsub_send").attr('disabled','');
		$("#WLsub_response").append('Sorry, there has been an error, please try again');
	}
}
