$(document).ready(function(){

	$("#Map2 area[@href=#]").click(function(){
		//alert($(this).attr("href"));
		$("#pop").html($("#"+$(this).attr("lang")).html()+'<div id="fermer"><a href="#">Fermer</a></div>');
		//alert($(this).attr("lang"))
		$("#pop").fadeIn("1200",function(){
				$("#fermer a").click(function(){
					$("#pop").fadeOut("200");
				});
		});
		return false;
	});
})
