function ChoixLanguePays(c,e){this.id=c;this.langue=e}var ChoixLangueListe=[];ChoixLangueListe[0]=new ChoixLanguePays("area-be",Array(["fr","area-wa"],["nl","area-fl"]));ChoixLangueListe[1]=new ChoixLanguePays("area-ch",Array(["fr","area-chf"],["de","area-chd"],["it","area-chi"])); function ChoixLangueAjoutePropriete(){try{var c=new ChoixLangue;$("img.map-image").bind("click",function(a){c.hide(a)});$("div#monde area").bind("click",function(){var a=this.id.substr(5,this.id.length+1);$("div#monde").hide();$("div#cont-"+a).show()});$("area.area-world").bind("click",function(a){c.hide(a);$(this).parents("div.continent").hide();$("div#monde").show()});jQuery.each(ChoixLangueListe,function(){var a=this,b=$("#"+this.id);b.href="#";b.bind("click",function(d){c.display(a,d)});b.css("cursor", "pointer")})}catch(e){alert(e)}}function ChoixLangue(){this.imageMapId="mapmonde-image";this.divBulleId="langue-bulle";this.imageCoords=Array(19,28);this.item=null} ChoixLangue.prototype={display:function(c,e){e.stopPropagation();$("#"+this.divBulleId).length>0&&$("#"+this.divBulleId).remove();this.item=c;var a=$("#"+this.item.id).get(0).coords.split(","),b=$('<div id="'+this.divBulleId+'"></div>');b.css({left:a[0]-this.imageCoords[0]+"px",top:a[1]-this.imageCoords[1]+"px"});b.addClass("langue-bulle-"+this.item.langue.length+" opened");a="";for(var d=0;d<this.item.langue.length;d++){a+='<a href="'+$("#"+this.item.langue[d][1]).attr("href")+'">'+this.item.langue[d][0].toUpperCase()+ "</a>";if(d<this.item.langue.length-1)a+=" | "}b.html("<p>"+a+"</p>");$("#langue").append(b);b=null;delete b},hide:function(){$("#"+this.divBulleId).length>0&&$("#"+this.divBulleId).remove()}};