$(document).ready(function(){
	//REMOVE USER
	$('#newsletterSend').click(function(){
		var thi = $(this).parent();
		var val = $('input[name=Newsletter]').attr('value');
		var err = $(this).prev().prev();
		
		if(val == 'Your Email Address'){
			$(err).html('').slideDown(function(){
				$(this).html('&bull; Your email address is required.');
			});
		}else{
			$.ajax({
				type: 'POST',
				url: 'php/ajax/newsletter.php',
				data: 'email='+val,
				success: function(msg){
					if(msg != 'good'){
						$(err).html('').slideDown(function(){
							$(this).html('&bull; '+msg);
						});
					}else{
						$(thi).slideUp(function(){
							$(this).html('Your email address has been added to our newsletter mailing list.').slideDown();
						});
					}
				},
				dataType: 'html'
			});
		}
	});
});
