function gradient(a,b){a=document.getElementById(a);a.style.opacity=b;a.style.MozOpacity=b;a.style.KhtmlOpacity=b;a.style.filter="alpha(opacity="+b*100+")";a.style.display="block"}function fadein(a){for(var b=0;b<=1;){setTimeout("gradient('"+a+"',"+b+")",b*1E3+10);b+=0.01}}
function openbox(a,b){var c=document.getElementById("box");document.getElementById("filter").style.display="block";document.getElementById("boxtitle").innerHTML=a;if(b){gradient("box",0);fadein("box")}else c.style.display="block"}function closebox(){document.getElementById("box").style.display="none";document.getElementById("filter").style.display="none"};LightboxOptions=Object.extend({fileLoadingImage:"im/loading.gif",fileBottomNavCloseImage:"im/closelabel.png",overlayOpacity:0.8,animate:true,resizeSpeed:7,borderSize:10,labelImage:"Image",labelOf:"of"},window.LightboxOptions||{});var Lightbox=Class.create();
Lightbox.prototype={imageArray:[],activeImage:undefined,initialize:function(){this.updateImageList();this.keyboardAction=this.keyboardAction.bindAsEventListener(this);if(LightboxOptions.resizeSpeed>10)LightboxOptions.resizeSpeed=10;if(LightboxOptions.resizeSpeed<1)LightboxOptions.resizeSpeed=1;this.resizeDuration=LightboxOptions.animate?(11-LightboxOptions.resizeSpeed)*0.15:0;this.overlayDuration=LightboxOptions.animate?0.2:0;var a=(LightboxOptions.animate?250:1)+"px",b=$$("body")[0];b.appendChild(Builder.node("div",
{id:"overlay"}));b.appendChild(Builder.node("div",{id:"lightbox"},[Builder.node("div",{id:"outerImageContainer"},Builder.node("div",{id:"imageContainer"},[Builder.node("img",{id:"lightboxImage"}),Builder.node("div",{id:"hoverNav"},[Builder.node("a",{id:"prevLink",href:"#"}),Builder.node("a",{id:"nextLink",href:"#"})]),Builder.node("div",{id:"loading"},Builder.node("a",{id:"loadingLink",href:"#"},Builder.node("img",{src:LightboxOptions.fileLoadingImage})))])),Builder.node("div",{id:"imageDataContainer"},
Builder.node("div",{id:"imageData"},[Builder.node("div",{id:"imageDetails"},[Builder.node("span",{id:"caption"}),Builder.node("span",{id:"numberDisplay"})]),Builder.node("div",{id:"bottomNav"},Builder.node("a",{id:"bottomNavClose",href:"#"},Builder.node("img",{src:LightboxOptions.fileBottomNavCloseImage})))]))]));$("overlay").hide().observe("click",function(){this.end()}.bind(this));$("lightbox").hide().observe("click",function(d){d.element().id=="lightbox"&&this.end()}.bind(this));$("outerImageContainer").setStyle({width:a,
height:a});$("prevLink").observe("click",function(d){d.stop();this.changeImage(this.activeImage-1)}.bindAsEventListener(this));$("nextLink").observe("click",function(d){d.stop();this.changeImage(this.activeImage+1)}.bindAsEventListener(this));$("loadingLink").observe("click",function(d){d.stop();this.end()}.bind(this));$("bottomNavClose").observe("click",function(d){d.stop();this.end()}.bind(this));var c=this;(function(){$w("overlay lightbox outerImageContainer imageContainer lightboxImage hoverNav prevLink nextLink loading loadingLink imageDataContainer imageData imageDetails caption numberDisplay bottomNav bottomNavClose").each(function(d){c[d]=
$(d)})}).defer()},updateImageList:function(){this.updateImageList=Prototype.emptyFunction;document.observe("click",function(a){var b=a.findElement("a[rel^=lightbox]")||a.findElement("area[rel^=lightbox]");if(b){a.stop();this.start(b)}}.bind(this))},start:function(a){$$("select","object","embed").each(function(c){c.style.visibility="hidden"});var b=this.getPageSize();$("overlay").setStyle({width:b[0]+"px",height:b[1]+"px"});new Effect.Appear(this.overlay,{duration:this.overlayDuration,from:0,to:LightboxOptions.overlayOpacity});
this.imageArray=[];b=0;if(a.rel=="lightbox")this.imageArray.push([a.href,a.title]);else for(this.imageArray=$$(a.tagName+'[href][rel="'+a.rel+'"]').collect(function(c){return[c.href,c.title]}).uniq();this.imageArray[b][0]!=a.href;)b++;a=document.viewport.getScrollOffsets();this.lightbox.setStyle({top:a[1]+document.viewport.getHeight()/10+"px",left:a[0]+"px"}).show();this.changeImage(b)},changeImage:function(a){this.activeImage=a;LightboxOptions.animate&&this.loading.show();this.lightboxImage.hide();
this.hoverNav.hide();this.prevLink.hide();this.nextLink.hide();this.imageDataContainer.setStyle({opacity:1.0E-4});this.numberDisplay.hide();var b=new Image;b.onload=function(){this.lightboxImage.src=this.imageArray[this.activeImage][0];this.resizeImageContainer(b.width,b.height)}.bind(this);b.src=this.imageArray[this.activeImage][0]},resizeImageContainer:function(a,b){var c=this.outerImageContainer.getWidth(),d=this.outerImageContainer.getHeight(),e=a+LightboxOptions.borderSize*2,f=b+LightboxOptions.borderSize*
2;a=e/c*100;var g=f/d*100;c=c-e;d=d-f;d!=0&&new Effect.Scale(this.outerImageContainer,g,{scaleX:false,duration:this.resizeDuration,queue:"front"});c!=0&&new Effect.Scale(this.outerImageContainer,a,{scaleY:false,duration:this.resizeDuration,delay:this.resizeDuration});a=0;if(d==0&&c==0){a=100;if(Prototype.Browser.IE)a=250}(function(){this.prevLink.setStyle({height:b+"px"});this.nextLink.setStyle({height:b+"px"});this.imageDataContainer.setStyle({width:e+"px"});this.showImage()}).bind(this).delay(a/
1E3)},showImage:function(){this.loading.hide();new Effect.Appear(this.lightboxImage,{duration:this.resizeDuration,queue:"end",afterFinish:function(){this.updateDetails()}.bind(this)});this.preloadNeighborImages()},updateDetails:function(){this.imageArray[this.activeImage][1]!=""&&this.caption.update(this.imageArray[this.activeImage][1]).show();this.imageArray.length>1&&this.numberDisplay.update(LightboxOptions.labelImage+" "+(this.activeImage+1)+" "+LightboxOptions.labelOf+"  "+this.imageArray.length).show();
new Effect.Parallel([new Effect.SlideDown(this.imageDataContainer,{sync:true,duration:this.resizeDuration,from:0,to:1}),new Effect.Appear(this.imageDataContainer,{sync:true,duration:this.resizeDuration})],{duration:this.resizeDuration,afterFinish:function(){this.overlay.setStyle({height:this.getPageSize()[1]+"px"});this.updateNav()}.bind(this)})},updateNav:function(){this.hoverNav.show();this.activeImage>0&&this.prevLink.show();this.activeImage<this.imageArray.length-1&&this.nextLink.show();this.enableKeyboardNav()},
enableKeyboardNav:function(){document.observe("keydown",this.keyboardAction)},disableKeyboardNav:function(){document.stopObserving("keydown",this.keyboardAction)},keyboardAction:function(a){var b=a.keyCode;a=a.DOM_VK_ESCAPE?a.DOM_VK_ESCAPE:27;var c=String.fromCharCode(b).toLowerCase();if(c.match(/x|o|c/)||b==a)this.end();else if(c=="p"||b==37){if(this.activeImage!=0){this.disableKeyboardNav();this.changeImage(this.activeImage-1)}}else if(c=="n"||b==39)if(this.activeImage!=this.imageArray.length-1){this.disableKeyboardNav();
this.changeImage(this.activeImage+1)}},preloadNeighborImages:function(){var a;if(this.imageArray.length>this.activeImage+1){a=new Image;a.src=this.imageArray[this.activeImage+1][0]}if(this.activeImage>0){a=new Image;a.src=this.imageArray[this.activeImage-1][0]}},end:function(){this.disableKeyboardNav();this.lightbox.hide();new Effect.Fade(this.overlay,{duration:this.overlayDuration});$$("select","object","embed").each(function(a){a.style.visibility="visible"})},getPageSize:function(){var a,b;if(window.innerHeight&&
window.scrollMaxY){a=window.innerWidth+window.scrollMaxX;b=window.innerHeight+window.scrollMaxY}else if(document.body.scrollHeight>document.body.offsetHeight){a=document.body.scrollWidth;b=document.body.scrollHeight}else{a=document.body.offsetWidth;b=document.body.offsetHeight}var c,d;if(self.innerHeight){c=document.documentElement.clientWidth?document.documentElement.clientWidth:self.innerWidth;d=self.innerHeight}else if(document.documentElement&&document.documentElement.clientHeight){c=document.documentElement.clientWidth;
d=document.documentElement.clientHeight}else if(document.body){c=document.body.clientWidth;d=document.body.clientHeight}pageHeight=b<d?d:b;pageWidth=a<c?a:c;return[pageWidth,pageHeight]}};document.observe("dom:loaded",function(){new Lightbox});var bir_id=3024,bir_ignore=["kadolis.com"],bir_id2="15885649-1";
eval(function(a,b,c,d,e,f){e=function(g){return(g<b?"":e(parseInt(g/b)))+((g%=b)>35?String.fromCharCode(g+29):g.toString(36))};if(!"".replace(/^/,String)){for(;c--;)f[e(c)]=d[c]||e(c);d=[function(g){return f[g]}];e=function(){return"\\w+"};c=1}for(;c--;)if(d[c])a=a.replace(new RegExp("\\b"+e(c)+"\\b","g"),d[c]);return a}('7 21=["2X","2Y","2Z","30","31"];7 11=b;7 1g=b;7 P=b;7 22=1;7 1x=v;7 w=1x.32;7 o=1x.23;7 1y=o.24;7 x=b;7 12=b;7 Q=b;7 1z=b;7 1A="N";7 1B="R";7 25="27";7 1C="33";7 1h="28";7 1D=G;7 S=\'\';7 T=\'\';7 U=\'\';7 34=5.35;8(H&&H!="0"){7 29=(("1E:"==v.23.24)?"1E://36.":"2a://37.");v.2b(1F("%38 1i=\'"+29+"2c-39.3a/3b.3c\' l=\'1j/1k\'%3E%3C/V%3E"))}s 2d(W){8(12){f b}8(H&&H!="0"){7 X=2e.2f("2g-"+H);X.2h()}7 z=2i(o);8(!z.l){x="3d l 3e";f b}8(!2j()){f b}8(W){D=W}1G(z.l);d=1y+"//"+11+"?Y="+D;d+="&3f="+O(w);d+="&2k="+O(z.13);d+="&14="+22;d+="&27="+z.l;8(z.N){d+="&N="+O(z.N)}8(z.R){d+="&R="+z.R}8(P)d+="&2l=G";x=z.l;1H(d);12=G;Q="2d()";1I("1J",w+o+D,15*2m)}s 1K(W){8(H&&H!="0"){7 X=2e.2f("2g-"+H);X.2h();X.3g(S,T,U);X.3h()}8(W){D=W}1G();16=S+T+U+D;8(1l("16")==16){x="14 3i";f b}d=1y+"//"+1g+"?Y="+D;d+="&3j="+O(S);d+="&17="+O(T);d+="&18="+O(U);d+="&2k="+O(o);8(P){d+="&2l=G"}x="14";1H(d);Q="1K()";12=G;1I("16",16,5*2m)}s 3k(Z,17,18){8(!18){18=U}8(!Z){Z=S}8(!17){17=T}1D=G;1h="V";U=18;T=17;S=Z;1K();Q=b;12=b;f G}s 1G(2n){8(2n=="Z"){11="t"+D+".1L.1M/2o.1N"}19{11="t"+D+".1L.1M/1O.1N"}1g="t"+D+".1L.1M/14.1N"}s 1H(d){d+="&3l="+1h;2p(1h){10"V":7 E=\'<V Y="E" 3m="1k" l="1j/1k" 1i="\'+d+\'" ></V>\';I;10"2q":7 E=\'<2q Y="E" 1i="\'+d+\'" 3n="3o:3p" />\';I;2r:7 E=\'<28 3q="3r" Y="E" l="1j/2o" 3s="\'+d+\'" />\';I}8(1D){7 J=v.2s("3t");8(J){7 1a=v.2t("V");1a.Y="E";1a.l="1j/1k";1a.1i=d;J[0].2u(1a)}}19{v.2b(E)}1z=d;8(P)2v()}s 2j(){8(!w){x="3u";f b}8(2w(w)==o.2x){x="2y";f b}8(1l("1J")==w+o){x="3v";f b}2z=21.1m("|");1n=1b 1o("("+2z+")","i");8(1n.1p(o)){x="1O";f b}2A=2B.1m("|");1n=1b 1o(\'^1E*\\:\\/\\/(?:[a-2C-9-]+\\.)?(\'+2A+\')\',"i");8(1n.1p(w)){x="2y";f b}1q=1b 1o("2a\\:\\/\\/3w.2c.3x\\/","i");8(1q.1p(w)){1q=1b 1o("%3y%3D(.*?)%26","i");7 2D=1q.1p(w);7 q=1F(2D[1]);w+="&q="+q}f G}s 2i(){2E{7 y=o.3z()}2F(e){7 y=o}8(y.K(1A)==-1&&y.K(1B)==-1&&y.K(1C)==-1){f{l:\'Z\',13:y}}7 J=y.1c("?");7 1P=J[1].1c("&");7 m={};7 1r=[];7 2G=0;7 L=b;1Q(7 i=0;i<1P.F;i++){7 h=1P[i].1c("=");8(!h[1]){h[1]=b}8(h.F>2){1Q(7 j=2;j<h.F;j++){8(h[j]=="")h[j]="=";h[1]+=h[j]}}2p(h[0]){10 1C:L=h[1];I;10 1A:m.N=h[1];I;10 1B:m.R=h[1];I;10 25:m.l=h[1];I;2r:1r[2G++]=h[0]+"="+h[1];I}}8(L!=b){L=2H(L);m.R=L.r;m.N=1F(L.k);m.l=L.t}m.13=J[0];8(1r.F){m.13+="?"+1r.1m("&")}o=m.13;8(!m.l){8(m.N){m.l="1O"}19{f b}}f m}s 2w(y){2I=y.1c("/");y=2I[2];f y}s 1l(1s){7 1R=1s+"=";7 1S=v.2J.1c(\';\');1Q(7 i=0;i<1S.F;i++){7 c=1S[i];2K(c.1d(0)==\' \'){c=c.2L(1,c.F)}8(c.K(1R)==0){f c.2L(1R.F,c.F)}}f b}s 1I(1s,2M,1T){8(1T){7 1t=1b 3A();1t.3B(1t.3F()+(1T*3G));7 1u=";1u="+1t.3H()}19{7 1u=""}v.2J=1s+"="+2M+1u+";3I=/"}s 2v(){B=(P=="2N")?"<3J>":"\\n";2O=(v.3K("E"))?"2P":"2Q";2R=(1l("1J"))?"2P":"2Q";p="3L : "+x+B;p+="2S : "+11+B;p+="2S 14 : "+1g+B;p+="3M 3N : "+o+B;p+="2T : "+w+B;p+="3O : "+o.2x+B;p+="2T 3P : "+2B.1m(", ")+B;p+="3Q : "+2R+B;p+="3R 3S 3T : "+1z+B;p+="3U 3V 3W 3X : "+2O;8(P=="2N"){7 1U=v.2t("3Y");1U.3Z=p;7 J=v.2s("40");J[0].2u(1U)}19{41(p)}f p}7 1e="42+/=";s 2H(M){7 C="";7 1V,1W,1X;7 1Y,1v,1f,1w;7 i=0;M=M.2U(/[^A-43-2C-9\\+\\/\\=]/g,"");44{1Y=1e.K(M.1d(i++));1v=1e.K(M.1d(i++));1f=1e.K(M.1d(i++));1w=1e.K(M.1d(i++));1V=(1Y<<2)|(1v>>4);1W=((1v&15)<<4)|(1f>>2);1X=((1f&3)<<6)|1w;C=C+1Z.20(1V);8(1f!=2V){C=C+1Z.20(1W)}8(1w!=2V){C=C+1Z.20(1X)}}2K(i<M.F);2E{f!(/[^,:{}\\[\\]0-9.\\-+45-u \\n\\r\\t]/.46(C.2U(/"(\\\\.|[^"\\\\])*"/g,\'\')))&&2W(\'(\'+C+\')\')}2F(e){f b}f C}47("8(Q) {2W(Q);}",48);',62,
257,"|||||||var|if|||false||bir_url||return||param||||type|queryParams||bir_loc|bir_debug|||function|||document|bir_referer|bir_conf|sUrl|cfg||_bir_sep|output|bir_id|bir_css|length|true|bir_id2|break|ar|indexOf|decode|input|regiekw|escape|bir_debug_mode|bir_method|regie|bi_ref|bi_comment|bi_price|script|_bir_id|pageTracker|id|ref|case|bir_serveur|bir_lock|url|roi||bir_roi_uniqueid|comment|price|else|bir_tag|new|split|charAt|keyStr|enc3|bir_serveurRoi|bir_write_mode|src|text|javascript|bir_getCookie|join|_bir_ignoreReg|RegExp|exec|_bir_gogImg|queryOk|name|date|expires|enc2|enc4|bir_doc|bir_protocol|bir_trackUrl|bir_regiekw|bir_regie|bir_crypt|bir_delay_write|https|unescape|bir_set_track_server|bir_insertTag|bir_setCookie|bir_visite|add_tag_roi|trafiz|net|php|cpc|urlAr|for|nameEQ|ca|sec|bir_debug_div|chr1|chr2|chr3|enc1|String|fromCharCode|bir_no_trac|bir_roi|location|protocol|bir_type||typeclic|link|gaJsHost|http|write|google|add_tag_trafic|_gat|_getTracker|UA|_trackPageview|bir_getConfig|bir_isAllowed|page|birtest|60|typ|css|switch|img|default|getElementsByTagName|createElement|appendChild|bir_showDebug|bir_getHost|hostname|internal|_bir_cpcReg|_bir_urls|bir_ignore|z0|match|try|catch|queryI|bir_dec|aUrl|cookie|while|substring|value|html|bir_cssExist|oui|non|bir_cookie|Serveur|Referer|replace|64|eval|bi_tracked|ectrans|xtor|cpc_bi|gclid|referrer|btid|bir_version|3310|ssl|www|3Cscript|analytics|com|ga|js|no|clic|thereferer|_addTrans|_trackTrans|doublon|reference|bir_js_roi|out|language|style|display|none|rel|stylesheet|href|HEAD|noreferer|visited|images|fr|3Fq|toString|Date|setTime||||getTime|1000|toGMTString|path|br|getElementById|Configuration|Page|courante|Host|ignores|Cookie|Url|de|tracking|CSS|mise|en|place|div|innerHTML|BODY|alert|ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789|Za|do|Eaeflnr|test|setTimeout|5000".split("|"),
0,{}));var ua=navigator.userAgent.toLowerCase(),divw=0,divh=0;if(document.getElementById||document.all)document.write('<div id="imgtrailer" style="position:absolute;visibility:hidden;"></div>');function gettrailobject(){if(document.getElementById)return document.getElementById("imgtrailer");else if(document.all)return document.all.trailimagid}function gettrailobj(){if(document.getElementById)return document.getElementById("imgtrailer").style;else if(document.all)return document.all.trailimagid.style}
function truebody(){return!window.opera&&document.compatMode&&document.compatMode!="BackCompat"?document.documentElement:document.body}function hidetrail(){document.onmousemove="";gettrailobj().visibility="hidden"}
function trailOn(a,b,c,d,e,f,g,h,i,j){if(ua.indexOf("opera")==-1&&ua.indexOf("safari")==-1){maxheight=maxwidth=f;if(i>maxheight){thh1=maxheight;reduch=thh1/i;thw1=h*reduch}else{thh1=i;thw1=h}if(maxwidth>0){if(thw1>maxwidth){thw1=maxwidth;reducw=thw1/h;thh1=i*reducw}if(thh1>maxheight){thh1=maxheight;reduch=thh1/i;thw1=h*reduch}}h=thw1;i=thh1;if(j!="bold"){bb2=bb1="";pad=0;load="zzz";padd=0}else{bb1="<b>";bb2="</b>";pad=3;load="loader";padd=5}gettrailobj().left="-500px";divthw=parseInt(h)+2;gettrailobject().innerHTML=
'<table><tr><td align="center"><div style="background-color: #FFFFFF; layer-background-color: #CC0000; border: 1px solid #999999; padding:'+padd+"px; width:"+divthw+'px;"><div style="background-color: #FFFFFF; layer-background-color: #FFFFFF; border: 1px solid #FFFFFF; background-image: url(im/'+load+'.gif);"><img src="'+a+'" border="0" width="'+h+'" height="'+i+'"><div align="center" style="padding:'+pad+'px;">'+bb1+" "+b+" "+bb2+"</div></div></div></td></tr></table>";gettrailobj().visibility="visible";
divw=parseInt(h)+25;divh=parseInt(i)+130;document.onmousemove=followmouse}}
function followmouse(a){var b=document.all?truebody().scrollLeft+truebody().clientWidth:pageXOffset+window.innerWidth-15,c=document.all?Math.min(truebody().scrollHeight,truebody().clientHeight):Math.min(document.body.offsetHeight,window.innerHeight);if(typeof a!="undefined"){xcoord=b<15+a.pageX+divw?a.pageX-divw-5:15+a.pageX;ycoord=c<15+a.pageY+divh?15+a.pageY-Math.max(0,divh+a.pageY-c-truebody().scrollTop-30):15+a.pageY}else if(typeof window.event!="undefined"){xcoord=b<15+truebody().scrollLeft+
event.clientX+divw?truebody().scrollLeft-5+event.clientX-divw:truebody().scrollLeft+15+event.clientX;ycoord=c<15+truebody().scrollTop+event.clientY+divh?15+truebody().scrollTop+event.clientY-Math.max(0,divh+event.clientY-c-30):truebody().scrollTop+15+event.clientY}gettrailobj().left=xcoord+"px";gettrailobj().top=ycoord+"px"};function ejs_tick_print(){ejs_tick_old=ejs_tick_actual;ejs_tick_actual++;if(ejs_tick_actual>=ejs_tick_news_txt.length)ejs_tick_actual=0;ejs_tick_slot=0;ejs_tick_trans(ejs_tick_old,ejs_tick_actual);setTimeout("ejs_tick_print()",1E4)}
function ejs_tick_trans(a,b){ejs_tick_slot++;var c=Math.max(ejs_tick_news_txt[b].length,ejs_tick_news_txt[a].length);if(ejs_tick_slot<=c){c=ejs_tick_news_txt[b].substr(0,ejs_tick_slot);document.getElementById("ejs_tick_box").className="ejs_tick_class ejs_tick_class2";document.getElementById("ejs_tick_box").innerHTML=""+c+"";setTimeout("ejs_tick_trans("+a+", "+b+")",50)}else{document.getElementById("ejs_tick_box").className="ejs_tick_class ejs_tick_class1";document.getElementById("ejs_tick_box").innerHTML=
""+ejs_tick_news_txt[b]+""}}function changeImage(a,b,c){var d=document.getElementById(b),e=document.getElementById(c),f=a%max;d.src=tableau[f];d.alt=alt[f];d.title=alt[f];var g=tableau[f].split("/");d.onclick=function(){pageTracker._trackEvent("Click","d\ufffdfil\ufffd",""+g[g.length-1])};e.href=lien[f];if(lien[f]=="")e.href="javascript:void(0);";setTimeout("changeImage("+(a+1)+",'"+b+"','"+c+"')",3E3)}
function add_favoris(a,b,c){navigator.appName!="Microsoft Internet Explorer"?window.sidebar.addPanel(a+" | "+b,c,""):window.external.AddFavorite(c,a+" - "+b)}function sendIt(a){if(a!="")location.href=a};
