$(document).ready(function() {

	$('#emailSignup').submit(function(event) {
		
		event.preventDefault();

		var email = $('#e_field').val();
		var birthMonth = $('#birthMonth').val();
		var birthDayOfMonth = $('#birthDayOfMonth').val();
		var birthYear = $('#birthYear').val();


		$.post("/ajax/email/add", { e: email, birthMonth: birthMonth, birthDayOfMonth: birthDayOfMonth, birthYear: birthYear },
			function(data){
				var response = data.response;
				var msg = '';
				$('#emailResponse').slideUp(function() {
					
						$('#emailResponse').removeClass('green');
				
						switch(response) {
							case 'coppa':
								msg = 'Thank you for your interest in registering.  As we are committed to protecting your privacy, we are unable to accept your registration. However, we invite you to continue browsing the site without registering.';
								$('#emailResponse').html(msg);
								$('#emailResponse').slideDown();
								$('#emailSignup *').fadeOut(1000);
							break;
							case 'exists':
								msg = 'This email address already exists in our database.';
								$('#emailResponse').html(msg);
								$('#emailResponse').slideDown();
							break;
							case 'invalid':
								msg = 'This email address is invalid.';
								$('#emailResponse').html(msg);
								$('#emailResponse').slideDown();
							break;
							case 'success':
								msg = 'Thanks for joining our mailing list! Watch your inbox for updates.';
								$('#emailResponse').addClass('green');
								$('#emailResponse').html(msg);
								$('#emailResponse').slideDown();
								$('#emailSignup *').fadeOut(1000);
							break;
						}
					
				});

				
				},
				"json"
			);
	});
	
	
	$('#memberNav li a').filter(':not(.sel)').fadeTo(1000,.3);
	$('#memberNav li a').hover(
			function() {
				$(this).filter(':not(.sel)').fadeTo(400,1);
			},
			function() {
				$(this).filter(':not(.sel)').fadeTo(400,.3);
			}
		);

	
});