$(document).ready(function () {
	  $('#aanmelden').hide();
	  $('#opdehoogteblijven').click(function() {
			$("#aanmelden").animate({
				height: 'toggle'
			}, { "duration": "3000", "easing": "easeOutBounce" });
	});

	
	
	
$(".aanmeldForm").submit(function() {  
   // we want to store the values from the form input box, then send via ajax below  
     var email = $('#email').attr('value');  
         $.ajax({  
             type: "POST",  
             url: "index.php",  
             data: "email="+ email,  
             success: function(){  
                 $('#aanmelden').html("<h2><b>Bedankt!</b> We houden u op de hoogte....</h2>");  
				 $("#aanmelden").animate({
					height: '50',
				 }, { "duration": "3000", "easing": "easeOutBounce" });
             }  
         });  
     return false;  
     });  

});
