$(document).ready(function() {

	$("#tuneIn").submit(function() {
		if($('#tuneIn #email').val() != "" && $('#tuneIn #email').val() != "Your Email Address") {
			$("#tuneIn").animate({
				opacity: 0
			},
			{
				duration: 400,
				complete: function() {		
					$("#tuneIn").hide();	
					$.ajax({
						data: $("#tuneIn").serialize(),
						url: "	/includes/signup.php",
						type: "POST",
						success: volunteerResponse
					});
				}
			});
		} else {
			alert("Please enter your name and address");	
		}
	});

	// post-submit callback 
	function volunteerResponse(data, textStatus)  {
		$("#form").append(data);
		$(".thanks").animate({
			opacity: 1
		}, 400 );
	}	
	
});
