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