$(document).ready(function(){
	$("#map area.clic").click(function(){
	qui = $(this).attr('id');
	lg = $(this).attr('lang');
		$("#pop").fadeOut(300,function(){
			$.get(qui +".php",{lang: lg}, function(data){
   			//alert("Data Loaded: "  + data);
				$("#pop").fadeIn(1500);
				$("#pop_contenu").html(data);
				
 			});
			return false;
		});
		
		
		
		//alert($(this).attr('id'));
		
		return false;
	
	});
	
	
	
	
	
	$(".fermer a").click(function(){
		$(this).parent().parent().fadeOut(1500);
	return false;
	
	});
	
	$("#presse_bt").click(function(){

		$("#pop").fadeOut(300,function(){
			$.get("presse.php", function(data){
   			//alert("Data Loaded: "  + data);
				$("#presse").fadeIn(1500);
				$("#presse_contenu").html(data);
				
 			});
			return false;
		});
		
		
		
		//alert($(this).attr('id'));
		
		return false;
	});

});
