$(document).ready(function() {
	    
    $('#demanderReservation').click(function() {
		
		// 	Send an AJAX request to get all the states.
		    $.get( 'send' , function(response) {
		    
		    	//	Get Popup
					$("#mask").fadeIn('slow', function() {
						
						//	Get Popup
							$("#popup").fadeIn('slow', function() {
								
								$('#closer').click(function() {
									
										//	Get Popup
											$("#popup").fadeOut('slow', function() {
												
												//	Get Popup
													$("#mask").fadeOut('slow', function() {
															
													});		
											
											});		
									        
								});
									
							});		
					
					});		
		        	
		    }); 
		
	});
	
});
