window.addEvent("load",init);function init(){var a=new SA_MapHome()}var SA_MapHome=new Class({map:null,chooser:null,countryList:null,initialize:function(){this.countryList=[];this.chooser=document.id("cChooser");this.chooser.set("opacity",0.8);this.map=document.id("samMapHome");this.map.getElements(".countryTrigger").each(function(a,b){if(a.hasClass("deact")){return}var c=new SA_MapHomeCountry(a);this.countryList.push(c)}.bind(this));this.map.addEvent("mouseenter",this.mapEnterListener.bind(this))},mapEnterListener:function(){this.map.removeEvents("mouseenter");this.chooser.fade(0)}});var SA_MapHomeCountry=new Class({Implements:[Events],elem:null,image:null,initialize:function(a){this.elem=a;this.image=document.id(a.get("id")+"I");this.image.set("opacity",0);this.elem.addEvent("mouseenter",this.enterListener.bind(this));this.elem.addEvent("mouseleave",this.leaveListener.bind(this));this.elem.addEvent("click",this.clickListener.bind(this))},getElem:function(){return this.elem},enterListener:function(a){this.image.fade(1)},leaveListener:function(a){this.image.fade(0)},clickListener:function(a){window.location.href=document.id(a.target).getParent(".countryTrigger").getElement("a").get("href")}});
