(function(A){A.fn.extend({autocomplete:function(B,C){var E=typeof B=="string";C=A.extend({},A.Autocompleter.defaults,{url:E?B:null,data:E?null:B,delay:E?A.Autocompleter.defaults.delay:10,max:C&&!C.scroll?10:150},C);C.highlight=C.highlight||function(F){return F};C.formatMatch=C.formatMatch||C.formatItem;return this.each(function(){new A.Autocompleter(this,C)})},result:function(B){return this.bind("result",B)},search:function(B){return this.trigger("search",[B])},flushCache:function(){return this.trigger("flushCache")},setOptions:function(B){return this.trigger("setOptions",[B])},unautocomplete:function(){return this.trigger("unautocomplete")}});A.Autocompleter=function(M,H){var C={UP:38,DOWN:40,DEL:46,TAB:9,RETURN:13,ESC:27,COMMA:188,PAGEUP:33,PAGEDOWN:34,BACKSPACE:8};var B=A(M).attr("autocomplete","off").addClass(H.inputClass);var K;var Q="";var N=A.Autocompleter.Cache(H);var F=0;var V;var Y={mouseDownOnSelect:false};var S=A.Autocompleter.Select(H,M,E,Y);var X;A.browser.opera&&A(M.form).bind("submit.autocomplete",function(){if(X){X=false;return false}});B.bind((A.browser.opera?"keypress":"keydown")+".autocomplete",function(Z){V=Z.keyCode;switch(Z.keyCode){case C.UP:Z.preventDefault();if(S.visible()){S.prev()}else{U(0,true)}break;case C.DOWN:Z.preventDefault();if(S.visible()){S.next()}else{U(0,true)}break;case C.PAGEUP:Z.preventDefault();if(S.visible()){S.pageUp()}else{U(0,true)}break;case C.PAGEDOWN:Z.preventDefault();if(S.visible()){S.pageDown()}else{U(0,true)}break;case H.multiple&&A.trim(H.multipleSeparator)==","&&C.COMMA:case C.TAB:case C.RETURN:if(E()){Z.preventDefault();X=true;return false}break;case C.ESC:S.hide();break;default:clearTimeout(K);K=setTimeout(U,H.delay);break}}).focus(function(){F++}).blur(function(){F=0;if(!Y.mouseDownOnSelect){T()}}).click(function(){if(F++>1&&!S.visible()){U(0,true)}}).bind("search",function(){var Z=(arguments.length>1)?arguments[1]:null;function a(e,d){var b;if(d&&d.length){for(var c=0;c<d.length;c++){if(d[c].result.toLowerCase()==e.toLowerCase()){b=d[c];break}}}if(typeof Z=="function"){Z(b)}else{B.trigger("result",b&&[b.data,b.value])}}A.each(I(B.val()),function(b,c){G(c,a,a)})}).bind("flushCache",function(){N.flush()}).bind("setOptions",function(){A.extend(H,arguments[1]);if("data" in arguments[1]){N.populate()}}).bind("unautocomplete",function(){S.unbind();B.unbind();A(M.form).unbind(".autocomplete")});function E(){var a=S.selected();if(!a){return false}var Z=a.result;Q=Z;if(H.multiple){var b=I(B.val());if(b.length>1){Z=b.slice(0,b.length-1).join(H.multipleSeparator)+H.multipleSeparator+Z}Z+=H.multipleSeparator}B.val(Z);W();B.trigger("result",[a.data,a.value]);return true}function U(b,a){if(V==C.DEL){S.hide();return }var Z=B.val();if(!a&&Z==Q){return }Q=Z;Z=J(Z);if(Z.length>=H.minChars){B.addClass(H.loadingClass);if(!H.matchCase){Z=Z.toLowerCase()}G(Z,L,W)}else{O();S.hide()}}function I(a){if(!a){return[""]}var b=a.split(H.multipleSeparator);var Z=[];A.each(b,function(c,d){if(A.trim(d)){Z[c]=A.trim(d)}});return Z}function J(Z){if(!H.multiple){return Z}var a=I(Z);return a[a.length-1]}function R(Z,a){if(H.autoFill&&(J(B.val()).toLowerCase()==Z.toLowerCase())&&V!=C.BACKSPACE){B.val(B.val()+a.substring(J(Q).length));A.Autocompleter.Selection(M,Q.length,Q.length+a.length)}}function T(){clearTimeout(K);K=setTimeout(W,200)}function W(){var Z=S.visible();S.hide();clearTimeout(K);O();if(H.mustMatch){B.search(function(a){if(!a){if(H.multiple){var b=I(B.val()).slice(0,-1);B.val(b.join(H.multipleSeparator)+(b.length?H.multipleSeparator:""))}else{B.val("")}}})}if(Z){A.Autocompleter.Selection(M,M.value.length,M.value.length)}}function L(a,Z){if(Z&&Z.length&&F){O();S.display(Z,a);R(a,Z[0].value);S.show()}else{W()}}function G(a,c,Z){if(!H.matchCase){a=a.toLowerCase()}var b=N.load(a);if(b&&b.length){c(a,b)}else{if((typeof H.url=="string")&&(H.url.length>0)){var d={timestamp:+new Date()};A.each(H.extraParams,function(e,f){d[e]=typeof f=="function"?f():f});A.ajax({mode:"abort",port:"autocomplete"+M.name,dataType:H.dataType,url:H.url,data:A.extend({q:J(a),limit:H.max},d),success:function(f){var e=H.parse&&H.parse(f)||P(f);N.add(a,e);c(a,e)}})}else{S.emptyList();Z(a)}}}function P(c){var Z=[];var b=c.split("\n");for(var a=0;a<b.length;a++){var d=A.trim(b[a]);if(d){d=d.split("|");Z[Z.length]={data:d,value:d[0],result:H.formatResult&&H.formatResult(d,d[0])||d[0]}}}return Z}function O(){B.removeClass(H.loadingClass)}};A.Autocompleter.defaults={inputClass:"ac_input",resultsClass:"ac_results",loadingClass:"ac_loading",minChars:1,delay:400,matchCase:false,matchSubset:true,matchContains:false,cacheLength:10,max:100,mustMatch:false,extraParams:{},selectFirst:true,formatItem:function(B){return B[0]},formatMatch:null,autoFill:false,width:0,multiple:false,multipleSeparator:", ",highlight:function(C,B){return C.replace(new RegExp("(?![^&;]+;)(?!<[^<>]*)("+B.replace(/([\^\$\(\)\[\]\{\}\*\.\+\?\|\\])/gi,"\\$1")+")(?![^<>]*>)(?![^&;]+;)","gi"),"<strong>$1</strong>")},scroll:true,scrollHeight:180};A.Autocompleter.Cache=function(C){var G={};var E=0;function I(L,K){if(!C.matchCase){L=L.toLowerCase()}var J=L.indexOf(K);if(J==-1){return false}return J==0||C.matchContains}function H(K,J){if(E>C.cacheLength){B()}if(!G[K]){E++}G[K]=J}function F(){if(!C.data){return false}var K={},J=0;if(!C.url){C.cacheLength=1}K[""]=[];for(var M=0,L=C.data.length;M<L;M++){var P=C.data[M];P=(typeof P=="string")?[P]:P;var O=C.formatMatch(P,M+1,C.data.length);if(O===false){continue}var N=O.charAt(0).toLowerCase();if(!K[N]){K[N]=[]}var Q={value:O,data:P,result:C.formatResult&&C.formatResult(P)||O};K[N].push(Q);if(J++<C.max){K[""].push(Q)}}A.each(K,function(R,S){C.cacheLength++;H(R,S)})}setTimeout(F,25);function B(){G={};E=0}return{flush:B,add:H,populate:F,load:function(M){if(!C.cacheLength||!E){return null}if(!C.url&&C.matchContains){var L=[];for(var J in G){if(J.length>0){var N=G[J];A.each(N,function(P,O){if(I(O.value,M)){L.push(O)}})}}return L}else{if(G[M]){return G[M]}else{if(C.matchSubset){for(var K=M.length-1;K>=C.minChars;K--){var N=G[M.substr(0,K)];if(N){var L=[];A.each(N,function(P,O){if(I(O.value,M)){L[L.length]=O}});return L}}}}}return null}}};A.Autocompleter.Select=function(F,K,M,Q){var J={ACTIVE:"ac_over"};var L,G=-1,S,N="",T=true,C,P;function O(){if(!T){return }C=A("<div/>").hide().addClass(F.resultsClass).css("position","absolute").appendTo(document.body);P=A("<ul/>").appendTo(C).mouseover(function(U){if(R(U).nodeName&&R(U).nodeName.toUpperCase()=="LI"){G=A("li",P).removeClass(J.ACTIVE).index(R(U));A(R(U)).addClass(J.ACTIVE)}}).click(function(U){A(R(U)).addClass(J.ACTIVE);M();K.focus();return false}).mousedown(function(){Q.mouseDownOnSelect=true}).mouseup(function(){Q.mouseDownOnSelect=false});if(F.width>0){C.css("width",F.width)}T=false}function R(V){var U=V.target;while(U&&U.tagName!="LI"){U=U.parentNode}if(!U){return[]}return U}function I(U){L.slice(G,G+1).removeClass(J.ACTIVE);H(U);var W=L.slice(G,G+1).addClass(J.ACTIVE);if(F.scroll){var V=0;L.slice(0,G).each(function(){V+=this.offsetHeight});if((V+W[0].offsetHeight-P.scrollTop())>P[0].clientHeight){P.scrollTop(V+W[0].offsetHeight-P.innerHeight())}else{if(V<P.scrollTop()){P.scrollTop(V)}}}}function H(U){G+=U;if(G<0){G=L.size()-1}else{if(G>=L.size()){G=0}}}function B(U){return F.max&&F.max<U?F.max:U}function E(){P.empty();var V=B(S.length);for(var W=0;W<V;W++){if(!S[W]){continue}var X=F.formatItem(S[W].data,W+1,V,S[W].value,N);if(X===false){continue}var U=A("<li/>").html(F.highlight(X,N)).addClass(W%2==0?"ac_even":"ac_odd").appendTo(P)[0];A.data(U,"ac_data",S[W])}L=P.find("li");if(F.selectFirst){L.slice(0,1).addClass(J.ACTIVE);G=0}if(A.fn.bgiframe){P.bgiframe()}}return{display:function(V,U){O();S=V;N=U;E()},next:function(){I(1)},prev:function(){I(-1)},pageUp:function(){if(G!=0&&G-8<0){I(-G)}else{I(-8)}},pageDown:function(){if(G!=L.size()-1&&G+8>L.size()){I(L.size()-1-G)}else{I(8)}},hide:function(){C&&C.hide();L&&L.removeClass(J.ACTIVE);G=-1},visible:function(){return C&&C.is(":visible")},current:function(){return this.visible()&&(L.filter("."+J.ACTIVE)[0]||F.selectFirst&&L[0])},show:function(){var W=A(K).offset();C.css({width:typeof F.width=="string"||F.width>0?F.width:A(K).width(),top:W.top+K.offsetHeight,left:W.left}).show();if(F.scroll){P.scrollTop(0);P.css({maxHeight:F.scrollHeight,overflow:"auto"});if(A.browser.msie&&typeof document.body.style.maxHeight==="undefined"){var U=0;L.each(function(){U+=this.offsetHeight});var V=U>F.scrollHeight;P.css("height",V?F.scrollHeight:U);if(!V){L.width(P.width()-parseInt(L.css("padding-left"))-parseInt(L.css("padding-right")))}}}},selected:function(){var U=L&&L.filter("."+J.ACTIVE).removeClass(J.ACTIVE);return U&&U.length&&A.data(U[0],"ac_data")},emptyList:function(){P&&P.empty()},unbind:function(){C&&C.remove()}}};A.Autocompleter.Selection=function(E,F,C){if(E.createTextRange){var B=E.createTextRange();B.collapse(true);B.moveStart("character",F);B.moveEnd("character",C);B.select()}else{if(E.setSelectionRange){E.setSelectionRange(F,C)}else{if(E.selectionStart){E.selectionStart=F;E.selectionEnd=C}}}E.focus()}})(jQuery);(function(A){A.fn.lightBox=function(Q){Q=jQuery.extend({overlayBgColor:"#000",overlayOpacity:0.8,fixedNavigation:false,imageLoading:"/fr/images/appli/lightbox/lightbox-ico-loading.gif",imageBtnPrev:"/fr/images/appli/lightbox/lightbox-btn-prev.gif",imageBtnNext:"/fr/images/appli/lightbox/lightbox-btn-next.gif",imageBtnClose:"/fr/images/appli/lightbox/lightbox-btn-close.gif",imageBlank:"/fr/images/appli/lightbox/lightbox-blank.gif",containerBorderSize:10,containerResizeSpeed:400,txtImage:"Image",txtOf:"sur",keyToClose:"c",keyToPrev:"p",keyToNext:"n",imageArray:[],activeImage:0},Q);var J=this;function S(){P(this,J);return false}function P(W,V){A("embed, object, select").css({visibility:"hidden"});C();Q.imageArray.length=0;Q.activeImage=0;if(V.length==1){Q.imageArray.push(new Array(W.getAttribute("href"),W.getAttribute("title")))}else{for(var U=0;U<V.length;U++){Q.imageArray.push(new Array(V[U].getAttribute("href"),V[U].getAttribute("title")))}}while(Q.imageArray[Q.activeImage][0]!=W.getAttribute("href")){Q.activeImage++}M()}function C(){A("body").append('<div id="jquery-overlay"></div><div id="jquery-lightbox"><div id="lightbox-container-image-box"><div id="lightbox-container-image"><img id="lightbox-image"><div style="" id="lightbox-nav"><a href="#" id="lightbox-nav-btnPrev"></a><a href="#" id="lightbox-nav-btnNext"></a></div><div id="lightbox-loading"><a href="#" id="lightbox-loading-link"><img src="'+Q.imageLoading+'"></a></div></div><div id="lightbox-container-image-data-box"><div id="lightbox-container-image-data"><div id="lightbox-image-details"><span id="lightbox-image-details-caption"></span></div><div id="lightbox-secNav"><a href="#" id="lightbox-secNav-btnClose"><img src="'+Q.imageBtnClose+'"></a></div></div></div></div></div>');var U=G();A("#jquery-overlay").css({backgroundColor:Q.overlayBgColor,opacity:Q.overlayOpacity,width:U[0],height:U[1]}).fadeIn();var V=I();A("#jquery-lightbox").css({top:V[1]+(U[3]/10),left:V[0]}).show();A("#jquery-overlay,#jquery-lightbox").click(function(){B()});A("#lightbox-loading-link,#lightbox-secNav-btnClose").click(function(){B();return false});A(window).resize(function(){var W=G();A("#jquery-overlay").css({width:W[0],height:W[1]});var X=I();A("#jquery-lightbox").css({top:X[1]+(W[3]/10),left:X[0]})})}function M(){A("#lightbox-loading").show();if(Q.fixedNavigation){A("#lightbox-image,#lightbox-container-image-data-box,#lightbox-image-details-currentNumber").hide()}else{A("#lightbox-image,#lightbox-nav,#lightbox-nav-btnPrev,#lightbox-nav-btnNext,#lightbox-container-image-data-box,#lightbox-image-details-currentNumber").hide()}var U=new Image();U.onload=function(){A("#lightbox-image").attr("src",Q.imageArray[Q.activeImage][0]);K(U.width,U.height);U.onload=function(){}};U.src=Q.imageArray[Q.activeImage][0]}function K(X,a){var U=A("#lightbox-container-image-box").width();var Z=A("#lightbox-container-image-box").height();var Y=(X+(Q.containerBorderSize*2));var W=(a+(Q.containerBorderSize*2));var V=U-Y;var b=Z-W;A("#lightbox-container-image-box").animate({width:Y,height:W},Q.containerResizeSpeed,function(){H()});if((V==0)&&(b==0)){if(A.browser.msie){O(250)}else{O(100)}}A("#lightbox-container-image-data-box").css({width:X});A("#lightbox-nav-btnPrev,#lightbox-nav-btnNext").css({height:a+(Q.containerBorderSize*2)})}function H(){A("#lightbox-loading").hide();A("#lightbox-image").fadeIn(function(){L();T()});R()}function L(){A("#lightbox-container-image-data-box").slideDown("fast");A("#lightbox-image-details-caption").hide();if(Q.imageArray[Q.activeImage][1]){A("#lightbox-image-details-caption").html(Q.imageArray[Q.activeImage][1]).show()}if(Q.imageArray.length>1){A("#lightbox-image-details-currentNumber").html(Q.txtImage+" "+(Q.activeImage+1)+" "+Q.txtOf+" "+Q.imageArray.length).show()}}function T(){A("#lightbox-nav").show();A("#lightbox-nav-btnPrev,#lightbox-nav-btnNext").css({background:"transparent url("+Q.imageBlank+") no-repeat"});if(Q.activeImage!=0){if(Q.fixedNavigation){A("#lightbox-nav-btnPrev").css({background:"url("+Q.imageBtnPrev+") left 100% no-repeat"}).unbind().bind("click",function(){Q.activeImage=Q.activeImage-1;M();return false})}else{A("#lightbox-nav-btnPrev").unbind().hover(function(){A(this).css({background:"url("+Q.imageBtnPrev+") left 100% no-repeat"})},function(){A(this).css({background:"transparent url("+Q.imageBlank+") no-repeat"})}).show().bind("click",function(){Q.activeImage=Q.activeImage-1;M();return false})}}if(Q.activeImage!=(Q.imageArray.length-1)){if(Q.fixedNavigation){A("#lightbox-nav-btnNext").css({background:"url("+Q.imageBtnNext+") right 100% no-repeat"}).unbind().bind("click",function(){Q.activeImage=Q.activeImage+1;M();return false})}else{A("#lightbox-nav-btnNext").unbind().hover(function(){A(this).css({background:"url("+Q.imageBtnNext+") right 100% no-repeat"})},function(){A(this).css({background:"transparent url("+Q.imageBlank+") no-repeat"})}).show().bind("click",function(){Q.activeImage=Q.activeImage+1;M();return false})}}N()}function N(){A(document).keydown(function(U){E(U)})}function F(){A(document).unbind()}function E(U){if(U==null){keycode=event.keyCode;escapeKey=27}else{keycode=U.keyCode;escapeKey=U.DOM_VK_ESCAPE}key=String.fromCharCode(keycode).toLowerCase();if((key==Q.keyToClose)||(key=="x")||(keycode==escapeKey)){B()}if((key==Q.keyToPrev)||(keycode==37)){if(Q.activeImage!=0){Q.activeImage=Q.activeImage-1;M();F()}}if((key==Q.keyToNext)||(keycode==39)){if(Q.activeImage!=(Q.imageArray.length-1)){Q.activeImage=Q.activeImage+1;M();F()}}}function R(){if((Q.imageArray.length-1)>Q.activeImage){objNext=new Image();objNext.src=Q.imageArray[Q.activeImage+1][0]}if(Q.activeImage>0){objPrev=new Image();objPrev.src=Q.imageArray[Q.activeImage-1][0]}}function B(){A("#jquery-lightbox").remove();A("#jquery-overlay").fadeOut(function(){A("#jquery-overlay").remove()});A("embed, object, select").css({visibility:"visible"})}function G(){var W,U;if(window.innerHeight&&window.scrollMaxY){W=window.innerWidth+window.scrollMaxX;U=window.innerHeight+window.scrollMaxY}else{if(document.body.scrollHeight>document.body.offsetHeight){W=document.body.scrollWidth;U=document.body.scrollHeight}else{W=document.body.offsetWidth;U=document.body.offsetHeight}}var V,X;if(self.innerHeight){if(document.documentElement.clientWidth){V=document.documentElement.clientWidth}else{V=self.innerWidth}X=self.innerHeight}else{if(document.documentElement&&document.documentElement.clientHeight){V=document.documentElement.clientWidth;X=document.documentElement.clientHeight}else{if(document.body){V=document.body.clientWidth;X=document.body.clientHeight}}}if(U<X){pageHeight=X}else{pageHeight=U}if(W<V){pageWidth=W}else{pageWidth=V}arrayPageSize=new Array(pageWidth,pageHeight,V,X);return arrayPageSize}function I(){var V,U;if(self.pageYOffset){U=self.pageYOffset;V=self.pageXOffset}else{if(document.documentElement&&document.documentElement.scrollTop){U=document.documentElement.scrollTop;V=document.documentElement.scrollLeft}else{if(document.body){U=document.body.scrollTop;V=document.body.scrollLeft}}}arrayPageScroll=new Array(V,U);return arrayPageScroll}function O(W){var V=new Date();U=null;do{var U=new Date()}while(U-V<W)}return this.unbind("click").click(S)}})(jQuery);(function(A){A.fn.innerfade=function(B){return this.each(function(){A.innerfade(this,B)})};A.innerfade=function(B,C){var F={animationtype:"fade",speed:"normal",type:"sequence",timeout:2000,containerheight:"auto",runningclass:"innerfade",children:null};if(C){A.extend(F,C)}if(F.children===null){var H=A(B).children()}else{var H=A(B).children(F.children)}if(H.length>1){A(B).css("position","relative").css("height",F.containerheight).addClass(F.runningclass);for(var E=0;E<H.length;E++){A(H[E]).css("z-index",String(H.length-E)).css("position","absolute").hide()}if(F.type=="sequence"){setTimeout(function(){A.innerfade.next(H,F,1,0)},F.timeout);A(H[0]).show()}else{if(F.type=="random"){var G=Math.floor(Math.random()*(H.length));setTimeout(function(){do{I=Math.floor(Math.random()*(H.length))}while(G==I);A.innerfade.next(H,F,I,G)},F.timeout);A(H[G]).show()}else{if(F.type=="random_start"){F.type="sequence";var I=Math.floor(Math.random()*(H.length));setTimeout(function(){A.innerfade.next(H,F,(I+1)%H.length,I)},F.timeout);A(H[I]).show()}else{alert("Innerfade-Type must either be 'sequence', 'random' or 'random_start'")}}}}};A.innerfade.next=function(E,B,F,C){if(B.animationtype=="slide"){A(E[C]).slideUp(B.speed);A(E[F]).slideDown(B.speed)}else{if(B.animationtype=="fade"){A(E[C]).fadeOut(B.speed);A(E[F]).fadeIn(B.speed,function(){removeFilter(A(this)[0])})}else{alert("Innerfade-animationtype must either be 'slide' or 'fade'")}}if(B.type=="sequence"){if((F+1)<E.length){F=F+1;C=F-1}else{F=0;C=E.length-1}}else{if(B.type=="random"){C=F;while(F==C){F=Math.floor(Math.random()*E.length)}}else{alert("Innerfade-Type must either be 'sequence', 'random' or 'random_start'")}}setTimeout((function(){A.innerfade.next(E,B,F,C)}),B.timeout)}})(jQuery);function removeFilter(A){if(A.style.removeAttribute){A.style.removeAttribute("filter")}}(function(E){var A=E.fn.height,C=E.fn.width;E.fn.extend({height:function(){if(this[0]==window){return self.innerHeight||E.boxModel&&document.documentElement.clientHeight||document.body.clientHeight}if(this[0]==document){return Math.max(document.body.scrollHeight,document.body.offsetHeight)}return A.apply(this,arguments)},width:function(){if(this[0]==window){return self.innerWidth||E.boxModel&&document.documentElement.clientWidth||document.body.clientWidth}if(this[0]==document){return Math.max(document.body.scrollWidth,document.body.offsetWidth)}return C.apply(this,arguments)},innerHeight:function(){return this[0]==window||this[0]==document?this.height():this.is(":visible")?this[0].offsetHeight-B(this,"borderTopWidth")-B(this,"borderBottomWidth"):this.height()+B(this,"paddingTop")+B(this,"paddingBottom")},innerWidth:function(){return this[0]==window||this[0]==document?this.width():this.is(":visible")?this[0].offsetWidth-B(this,"borderLeftWidth")-B(this,"borderRightWidth"):this.width()+B(this,"paddingLeft")+B(this,"paddingRight")},outerHeight:function(){return this[0]==window||this[0]==document?this.height():this.is(":visible")?this[0].offsetHeight:this.height()+B(this,"borderTopWidth")+B(this,"borderBottomWidth")+B(this,"paddingTop")+B(this,"paddingBottom")},outerWidth:function(){return this[0]==window||this[0]==document?this.width():this.is(":visible")?this[0].offsetWidth:this.width()+B(this,"borderLeftWidth")+B(this,"borderRightWidth")+B(this,"paddingLeft")+B(this,"paddingRight")},scrollLeft:function(G){if(G!=undefined){return this.each(function(){if(this==window||this==document){window.scrollTo(G,E(window).scrollTop())}else{this.scrollLeft=G}})}if(this[0]==window||this[0]==document){return self.pageXOffset||E.boxModel&&document.documentElement.scrollLeft||document.body.scrollLeft}return this[0].scrollLeft},scrollTop:function(G){if(G!=undefined){return this.each(function(){if(this==window||this==document){window.scrollTo(E(window).scrollLeft(),G)}else{this.scrollTop=G}})}if(this[0]==window||this[0]==document){return self.pageYOffset||E.boxModel&&document.documentElement.scrollTop||document.body.scrollTop}return this[0].scrollTop},position:function(P,K){var H=this[0],N=H.parentNode,J=H.offsetParent,P=E.extend({margin:false,border:false,padding:false,scroll:false},P||{}),M=H.offsetLeft,L=H.offsetTop,I=H.scrollLeft,O=H.scrollTop;if(E.browser.mozilla||E.browser.msie){M+=B(H,"borderLeftWidth");L+=B(H,"borderTopWidth")}if(E.browser.mozilla){do{if(E.browser.mozilla&&N!=H&&E.css(N,"overflow")!="visible"){M+=B(N,"borderLeftWidth");L+=B(N,"borderTopWidth")}if(N==J){break}}while((N=N.parentNode)&&(N.tagName.toLowerCase()!="body"||N.tagName.toLowerCase()!="html"))}var G=F(H,P,M,L,I,O);if(K){E.extend(K,G);return this}else{return G}},offset:function(H,M){var L=0,K=0,U=0,P=0,V=this[0],J=this[0],I,G,T=E.css(V,"position"),S=E.browser.mozilla,N=E.browser.msie,X=E.browser.safari,R=E.browser.opera,O=false,Q=false,H=E.extend({margin:true,border:false,padding:false,scroll:true,lite:false},H||{});if(H.lite){return this.offsetLite(H,M)}if(V.tagName.toLowerCase()=="body"){L=V.offsetLeft;K=V.offsetTop;if(S){L+=B(V,"marginLeft")+(B(V,"borderLeftWidth")*2);K+=B(V,"marginTop")+(B(V,"borderTopWidth")*2)}else{if(R){L+=B(V,"marginLeft");K+=B(V,"marginTop")}else{if(N&&jQuery.boxModel){L+=B(V,"borderLeftWidth");K+=B(V,"borderTopWidth")}}}}else{do{G=E.css(J,"position");L+=J.offsetLeft;K+=J.offsetTop;if(S||N){L+=B(J,"borderLeftWidth");K+=B(J,"borderTopWidth");if(S&&G=="absolute"){O=true}if(N&&G=="relative"){Q=true}}I=J.offsetParent;if(H.scroll||S){do{if(H.scroll){U+=J.scrollLeft;P+=J.scrollTop}if(S&&J!=V&&E.css(J,"overflow")!="visible"){L+=B(J,"borderLeftWidth");K+=B(J,"borderTopWidth")}J=J.parentNode}while(J!=I)}J=I;if(J.tagName.toLowerCase()=="body"||J.tagName.toLowerCase()=="html"){if((X||(N&&E.boxModel))&&T!="absolute"&&T!="fixed"){L+=B(J,"marginLeft");K+=B(J,"marginTop")}if((S&&!O&&T!="fixed")||(N&&T=="static"&&!Q)){L+=B(J,"borderLeftWidth");K+=B(J,"borderTopWidth")}break}}while(J)}var W=F(V,H,L,K,U,P);if(M){E.extend(M,W);return this}else{return W}},offsetLite:function(O,J){var L=0,K=0,H=0,N=0,M=this[0],I,O=E.extend({margin:true,border:false,padding:false,scroll:true},O||{});do{L+=M.offsetLeft;K+=M.offsetTop;I=M.offsetParent;if(O.scroll){do{H+=M.scrollLeft;N+=M.scrollTop;M=M.parentNode}while(M!=I)}M=I}while(M&&M.tagName.toLowerCase()!="body"&&M.tagName.toLowerCase()!="html");var G=F(this[0],O,L,K,H,N);if(J){E.extend(J,G);return this}else{return G}}});var B=function(G,H){return parseInt(E.css(G.jquery?G[0]:G,H))||0};var F=function(K,J,H,L,G,I){if(!J.margin){H-=B(K,"marginLeft");L-=B(K,"marginTop")}if(J.border&&(E.browser.safari||E.browser.opera)){H+=B(K,"borderLeftWidth");L+=B(K,"borderTopWidth")}else{if(!J.border&&!(E.browser.safari||E.browser.opera)){H-=B(K,"borderLeftWidth");L-=B(K,"borderTopWidth")}}if(J.padding){H+=B(K,"paddingLeft");L+=B(K,"paddingTop")}if(J.scroll){G-=K.scrollLeft;I-=K.scrollTop}return J.scroll?{top:L-I,left:H-G,scrollTop:I,scrollLeft:G}:{top:L,left:H}}})(jQuery);(function(A){var B=function(E,G,C,F){this.x1=E;this.x2=C;this.y1=G;this.y2=F};B.prototype.contains=function(C){return(this.x1<=C.x1&&C.x2<=this.x2)&&(this.y1<=C.y1&&C.y2<=this.y2)};B.prototype.transform=function(C,E){return new B(this.x1+C,this.y1+E,this.x2+C,this.y2+E)};A.fn.positionBy=function(J){var L=new Date();if(this.length==0){return this}var J=A.extend({target:null,targetPos:null,elementPos:null,x:null,y:null,positions:null,addClass:false,force:false,container:window,hideAfterPosition:false},J);if(J.x!=null){var G=J.x;var H=J.y;var F=0;var K=0}else{var C=A(A(J.target)[0]);var F=C.outerWidth();var K=C.outerHeight();var I=C.offset();var G=I.left;var H=I.top}var E=G+F;var M=H+K;return this.each(function(){var a=A(this);if(!a.is(":visible")){a.css({left:-3000,top:-3000}).show()}var b=a.outerWidth();var Z=a.outerHeight();var S=[];var R=[];S[0]=new B(E,H,E+b,H+Z);R[0]=[1,7,4];S[1]=new B(E,M-Z,E+b,M);R[1]=[0,6,4];S[2]=new B(E,M,E+b,M+Z);R[2]=[1,3,10];S[3]=new B(E-b,M,E,M+Z);R[3]=[1,6,10];S[4]=new B(G,M,G+b,M+Z);R[4]=[1,6,9];S[5]=new B(G-b,M,G,M+Z);R[5]=[6,4,9];S[6]=new B(G-b,M-Z,G,M);R[6]=[7,1,4];S[7]=new B(G-b,H,G,H+Z);R[7]=[6,0,4];S[8]=new B(G-b,H-Z,G,H);R[8]=[7,9,4];S[9]=new B(G,H-Z,G+b,H);R[9]=[0,7,4];S[10]=new B(E-b,H-Z,E,H);R[10]=[0,7,3];S[11]=new B(E,H-Z,E+b,H);R[11]=[0,10,3];S[12]=new B(E-b,H,E,H+Z);R[12]=[13,7,10];S[13]=new B(E-b,M-Z,E,M);R[13]=[12,6,3];S[14]=new B(G,M-Z,G+b,M);R[14]=[15,1,4];S[15]=new B(G,H,G+b,H+Z);R[15]=[14,0,9];if(J.positions!==null){var X=J.positions[0]}else{if(J.targetPos!=null&&J.elementPos!=null){var X=[];X[0]=[];X[0][0]=15;X[0][1]=7;X[0][2]=8;X[0][3]=9;X[1]=[];X[1][0]=0;X[1][1]=12;X[1][2]=10;X[1][3]=11;X[2]=[];X[2][0]=2;X[2][1]=3;X[2][2]=13;X[2][3]=1;X[3]=[];X[3][0]=4;X[3][1]=5;X[3][2]=6;X[3][3]=14;var X=X[J.targetPos][J.elementPos]}}var Q=S[X];var P=X;if(!J.force){$window=A(window);var Y=$window.scrollLeft();var W=$window.scrollTop();var N=new B(Y,W,Y+$window.width(),W+$window.height());var V;if(J.positions){V=J.positions}else{V=[X]}var U=[];while(V.length>0){var O=V.shift();if(U[O]){continue}U[O]=true;if(!N.contains(S[O])){if(J.positions===null){V=jQuery.merge(V,R[O])}}else{Q=S[O];break}}}a.parents().each(function(){var d=A(this);if(d.css("position")!="static"){var c=d.offset();Q=Q.transform(-c.left,-c.top);return false}});var T={left:Q.x1,top:Q.y1};if(J.hideAfterPosition){T.display="none"}a.css(T);if(J.addClass){a.removeClass("positionBy0 positionBy1 positionBy2 positionBy3 positionBy4 positionBy5 positionBy6 positionBy7 positionBy8 positionBy9 positionBy10 positionBy11 positionBy12 positionBy13 positionBy14 positionBy15").addClass("positionBy"+O)}})}})(jQuery);(function(A){A.fn.bgIframe=A.fn.bgiframe=function(C){if(A.browser.msie&&/6.0/.test(navigator.userAgent)){C=A.extend({top:"auto",left:"auto",width:"auto",height:"auto",opacity:true,src:"javascript:false;"},C||{});var E=function(F){return F&&F.constructor==Number?F+"px":F},B='<iframe class="bgiframe"frameborder="0"tabindex="-1"src="'+C.src+'"style="display:block;position:absolute;z-index:-1;'+(C.opacity!==false?"filter:Alpha(Opacity='0');":"")+"top:"+(C.top=="auto"?"expression(((parseInt(this.parentNode.currentStyle.borderTopWidth)||0)*-1)+'px')":E(C.top))+";left:"+(C.left=="auto"?"expression(((parseInt(this.parentNode.currentStyle.borderLeftWidth)||0)*-1)+'px')":E(C.left))+";width:"+(C.width=="auto"?"expression(this.parentNode.offsetWidth+'px')":E(C.width))+";height:"+(C.height=="auto"?"expression(this.parentNode.offsetHeight+'px')":E(C.height))+';"/>';return this.each(function(){if(A("> iframe.bgiframe",this).length==0){this.insertBefore(document.createElement(B),this.firstChild)}})}return this}})(jQuery);jQuery(function(A){A("ul.jd_menu").jdMenu()});(function(E){function C(F){var G=E.data(E(F).parents().andSelf().filter("ul.jd_menu")[0],"jdMenuSettings");E("> li",F).bind("mouseenter.jdmenu mouseleave.jdmenu",function(H){E(this).toggleClass("jdm_hover");var I=E("> ul",this);if(I.length==1){if(I.html()!=""){clearTimeout(this.$jdTimer);var K=(H.type=="mouseenter");var J=(K?B:A);this.$jdTimer=setTimeout(function(){J(I[0],G.onAnimate,G.isVertical)},K?G.showDelay:G.hideDelay)}}}).bind("click.jdmenu",function(I){var J=E("> ul",this);if(J.length==1&&(G.disableLinks==true||E(this).hasClass("accessible"))){return true}if(I.target==this){var K=E("> a",I.target).not(".accessible");if(K.length>0){var H=K[0];if(!H.onclick){window.open(H.href,H.target||"_self")}else{E(H).trigger("click")}}}if(G.disableLinks||(!G.disableLinks&&!E(this).parent().hasClass("jd_menu"))){E(this).parent().jdMenuHide();I.stopPropagation()}}).find("> a").bind("focus.jdmenu blur.jdmenu",function(H){var I=E(this).parents("li:eq(0)");if(H.type=="focus"){I.addClass("jdm_hover")}else{I.removeClass("jdm_hover")}}).filter(".accessible").bind("click.jdmenu",function(H){H.preventDefault()})}function B(I,H,G){var I=E(I);if(I.is(":visible")){return }I.bgiframe();var F=I.parent();I.trigger("jdMenuShow").positionBy({target:F[0],targetPos:(G===true||!F.parent().hasClass("jd_menu")?1:3),elementPos:0,hideAfterPosition:true});if(!I.hasClass("jdm_events")){I.addClass("jdm_events");C(I)}F.addClass("jdm_active").siblings("li").find("> ul:eq(0):visible").each(function(){A(this)});if(H===undefined){I.show()}else{H.apply(I[0],[true])}}function A(G,F){var G=E(G);E(".bgiframe",G).remove();G.filter(":not(.jd_menu)").find("> li > ul:eq(0):visible").each(function(){A(this)}).end();if(F===undefined){G.hide()}else{F.apply(G[0],[false])}G.trigger("jdMenuHide").parents("li:eq(0)").removeClass("jdm_active jdm_hover").end().find("> li").removeClass("jdm_active jdm_hover")}E.fn.jdMenu=function(F){var F=E.extend({showDelay:200,hideDelay:200,disableLinks:true},F);if(!E.isFunction(F.onAnimate)){F.onAnimate=undefined}return this.filter("ul.jd_menu").each(function(){E.data(this,"jdMenuSettings",E.extend({isVertical:E(this).hasClass("jd_menu_vertical")},F));C(this)})};E.fn.jdMenuUnbind=function(){E("ul.jdm_events",this).unbind(".jdmenu").find("> a").unbind(".jdmenu")};E.fn.jdMenuHide=function(){return this.filter("ul").each(function(){A(this)})};E(window).bind("click.jdmenu",function(){E("ul.jd_menu ul:visible").jdMenuHide()})})(jQuery);(function(A){A.transition=function(E,F){this.settings=F;this.current=0;this.slideshowRunning=false;this.thumbstripOffset=0;var C=this;if(E.is("ul")||E.is("ol")){this.$thumbnails=E;this.count=A("li",E).size()}else{if(this.settings.images&&this.settings.images.length>0){this.$thumbnails=A("<ul></ul>");A.each(this.settings.images,function(I,J){var K=J.title?' title="'+J.title+'"':"";C.$thumbnails.append('<li><a href="'+J.image+'"'+K+'><img src="'+J.thumb+'" alt="" /></a></li>')});E.append(this.$thumbnails);this.count=this.settings.images.length}else{return }}A("a",this.$thumbnails).each(function(I){A(this).attr("rel",I).click(function(J){J.preventDefault();J.stopPropagation();C.stopSlideshow();C.displayImage(parseInt(A(this).attr("rel")),true);return false})});if(typeof (this.settings.thumbSize)=="number"){this.thumbWidth=this.settings.thumbSize;this.thumbHeight=this.settings.thumbSize}else{this.thumbWidth=this.settings.thumbSize.width;this.thumbHeight=this.settings.thumbSize.height}var H=A(B).width(this.settings.width);this.$thumbnails.before(H);this.$thumbstrip=A(".transition-thumbstrip",H).prepend(this.$thumbnails).width(this.settings.width).height(this.thumbHeight);this.$image=A("img:eq(0)",H);this.$caption=A(".transition-caption",H);this.$previousButton=A(".transition-prev",H).hide();this.$slideshowButton=A(".transition-slideshow",H).hide();this.$nextButton=A(".transition-next",H).hide();this.$backwardButton=A(".transition-backward",H).hide();this.$forwardButton=A(".transition-forward",H).hide();A(".transition-view",H).width(this.settings.width).height(this.settings.height);var G=A(".transition-title",H).text(this.$thumbnails.attr("title")||this.settings.title||"jQuery Transition");if(A.browser.msie){A(".transition-view a",H).css({opacity:".67"});C.$backwardButton.css({opacity:".67"});C.$forwardButton.css({opacity:".67"})}this.$previousButton.click(function(){C.stopSlideshow();C.displayPreviousImage()});this.$nextButton.click(function(){C.stopSlideshow();C.displayNextImage()});this.$slideshowButton.click(function(){if(C.slideshowRunning){C.stopSlideshow()}else{C.displayNextImage(true)}});this.$backwardButton.click(function(){C.stopSlideshow();C.moveThumbstrip(-C.settings.thumbs)});this.$forwardButton.click(function(){C.stopSlideshow();C.moveThumbstrip(C.settings.thumbs)});H.hover(function(){if(C.settings.displayCaption){C.$caption.animate({marginBottom:0},"fast")}if(C.settings.displayTitle){G.animate({marginTop:0},"fast")}A(".transition-view a",H).fadeIn("fast");C.$backwardButton.fadeIn("fast");C.$forwardButton.fadeIn("fast")},function(){if(C.settings.displayCaption){C.$caption.animate({marginBottom:"-4em"},"slow")}if(C.settings.displayTitle){G.animate({marginTop:"-3em"},"slow")}A(".transition-view a",H).fadeOut("slow");C.$backwardButton.fadeOut("slow");C.$forwardButton.fadeOut("slow")});if(this.settings.autoRun){this.current=-1;this.displayNextImage(true)}else{this.displayImage(0,false)}};A.transition.prototype.loadImage=function(C,E,F){A(C).load(function(){A(this).css({marginLeft:-A(this).width()/2,marginTop:-A(this).height()/2}).show();if(F){F()}}).hide().attr("src",E)};A.transition.prototype.displayImage=function(G,H){var F=A("a:eq("+G+")",this.$thumbnails);if(H){var E=this;var C=A('<img src=""/>').css({zIndex:0});this.$image.css({zIndex:1}).after(C);this.loadImage(C,F.attr("href"),function(){E.$image.animate({opacity:0},E.settings.transitionTime,function(){E.$image.remove();E.$image=C})})}else{this.loadImage(this.$image,F.attr("href"))}var J=(G+1)+"/"+this.count;if(F.attr("title")){J+=" - "+F.attr("title")}this.$caption.text(J);this.current=G;var I=G-Math.floor(this.settings.thumbs/2);this.displayThumbstrip(I);this.maintainControls()};A.transition.prototype.displayPreviousImage=function(){var C=this.current-1;if(C<=0){C=0}this.displayImage(C,true)};A.transition.prototype.displayNextImage=function(C){var F=this.current+1;if(F>this.count-1){if(C){F=0}else{F=this.count-1}}if(C){var E=this;this.slideshowRunning=setTimeout(function(){E.displayNextImage(true)},E.settings.displayTime)}this.displayImage(F,true)};A.transition.prototype.stopSlideshow=function(){if(this.slideshowRunning){clearTimeout(this.slideshowRunning);this.slideshowRunning=false}this.$slideshowButton.removeClass("transition-stop")};A.transition.prototype.displayThumbstrip=function(G){if(G<0){G=0}else{if(G>this.count-this.settings.thumbs){G=this.count-this.settings.thumbs}}var F=1+this.settings.width/this.settings.thumbs;A(".transition-current",this.$thumbnails).remove();var C=A('<span class="transition-current"></span>');var E=A("<span></span>");C.width(this.thumbWidth-4).height(this.thumbHeight-4);E.width(this.thumbWidth-8).height(this.thumbHeight-8);A("li:eq("+this.current+")",this.$thumbnails).append(C.append(E));if(G!=this.thumbstripOffset){this.$thumbnails.animate({marginLeft:(-F*G)+"px"},"fast");this.thumbstripOffset=G;this.maintainControls()}};A.transition.prototype.moveThumbstrip=function(C){var E=this.thumbstripOffset+C;this.displayThumbstrip(E)};A.transition.prototype.maintainControls=function(){if(this.current==0){this.$previousButton.addClass("transition-disabled")}else{this.$previousButton.removeClass("transition-disabled")}if(this.current==this.count-1){this.$nextButton.addClass("transition-disabled")}else{this.$nextButton.removeClass("transition-disabled")}if(this.slideshowRunning){this.$slideshowButton.addClass("transition-stop")}else{this.$slideshowButton.removeClass("transition-stop")}if(this.thumbstripOffset==0){this.$backwardButton.addClass("transition-disabled")}else{this.$backwardButton.removeClass("transition-disabled")}if(this.thumbstripOffset>=this.count-this.settings.thumbs){this.$forwardButton.addClass("transition-disabled")}else{this.$forwardButton.removeClass("transition-disabled")}};A.fn.transition=function(C){var E=A.extend({},A.fn.transition.defaults,C);return this.each(function(){var F=A(this);var G=A.meta?A.extend({},E,F.data()):E;new A.transition(F,G)})};A.fn.transition.defaults={title:"",images:null,autoRun:false,displayTime:5000,transitionTime:1000,width:400,height:300,thumbs:5,thumbSize:76,displayTitle:true,displayCaption:true};var B='<div class="transition"><div class="transition-view"><img src="" /><p class="transition-title"></p><p class="transition-caption"></p></div><div class="transition-thumbstrip"><a class="transition-backward" href="javascript:;"><span>Backward</span></a><a class="transition-forward" href="javascript:;"><span>Forward</span></a></div></div>'})(jQuery);(function(A){A.fn.newsTicker=A.fn.newsticker=function(B){B=B||4000;initTicker=function(C){A.newsticker.clear(C);C.items=A("li",C);C.items.not(":eq(0)").hide().end();C.currentitem=0;startTicker(C)};startTicker=function(C){C.tickfn=setInterval(function(){doTick(C)},B)};doTick=function(C){if(C.pause){return }A.newsticker.pause(C);A(C.items[C.currentitem]).fadeOut("slow",function(){A(this).hide();C.currentitem=++C.currentitem%(C.items.size());A(C.items[C.currentitem]).fadeIn("slow",function(){A.newsticker.resume(C)})})};this.each(function(){if(this.nodeName.toLowerCase()!="ul"){return }initTicker(this)}).addClass("newsticker").hover(function(){A.newsticker.pause(this)},function(){A.newsticker.resume(this)});return this};A.newsticker=A.newsTicker={pause:function(B){(B.jquery?B[0]:B).pause=true},resume:function(B){(B.jquery?B[0]:B).pause=false},clear:function(B){B=(B.jquery?B[0]:B);clearInterval(B.tickfn);B.tickfn=null;B.items=null;B.currentItem=null}}})(jQuery);var prefsLoaded=false;var defaultFontSize=100;var currentFontSize=defaultFontSize;function resetFontSize(){currentFontSize=defaultFontSize;changeFontSize(0)}function changeFontSize(A){currentFontSize=parseInt(currentFontSize)+parseInt(A*10);if(currentFontSize>110){currentFontSize=110}else{if(currentFontSize<90){currentFontSize=90}}setFontSize(currentFontSize)}function setFontSize(B){var A=(document.getElementById)?document.getElementById("content_area"):document.all("content_area");document.body.style.fontSize=B+"%"}function createCookie(C,E,F){if(F){var B=new Date();B.setTime(B.getTime()+(F*24*60*60*1000));var A="; expires="+B.toGMTString()}else{A=""}document.cookie=C+"="+E+A+"; path=/"}function readCookie(B){var E=B+"=";var A=document.cookie.split(";");for(var C=0;C<A.length;C++){var F=A[C];while(F.charAt(0)==" "){F=F.substring(1,F.length)}if(F.indexOf(E)==0){return F.substring(E.length,F.length)}}return null}window.onload=setUserOptions;function setUserOptions(){if(!prefsLoaded){cookie=readCookie("fontSize");currentFontSize=cookie?cookie:defaultFontSize;setFontSize(currentFontSize);prefsLoaded=true}}window.onunload=saveSettings;function saveSettings(){createCookie("fontSize",currentFontSize,365)}new function(F){var E=F.separator||"&";var C=F.spaces===false?false:true;var A=F.suffix===false?"":"[]";var H=F.prefix===false?false:true;var B=H?F.hash===true?"#":"?":"";var G=F.numbers===false?false:true;jQuery.query=new function(){var I=function(N,M){return N!=undefined&&N!==null&&(!!M?N.constructor==M:true)};var J=function(R){var M,Q=/\[([^[]*)\]/g,N=/^(\S+?)(\[\S*\])?$/.exec(R),O=N[1],P=[];while(M=Q.exec(N[2])){P.push(M[1])}return[O,P]};var L=function(S,R,Q){var T,P=R.shift();if(typeof S!="object"){S=null}if(P===""){if(!S){S=[]}if(I(S,Array)){S.push(R.length==0?Q:L(null,R.slice(0),Q))}else{if(I(S,Object)){var O=0;while(S[O++]!=null){}S[--O]=R.length==0?Q:L(S[O],R.slice(0),Q)}else{S=[];S.push(R.length==0?Q:L(null,R.slice(0),Q))}}}else{if(P&&P.match(/^\s*[0-9]+\s*$/)){var N=parseInt(P,10);if(!S){S=[]}S[N]=R.length==0?Q:L(S[N],R.slice(0),Q)}else{if(P){var N=P.replace(/^\s*|\s*$/g,"");if(!S){S={}}if(I(S,Array)){var M={};for(var O=0;O<S.length;++O){M[O]=S[O]}S=M}S[N]=R.length==0?Q:L(S[N],R.slice(0),Q)}else{return Q}}}return S};var K=function(M){var N=this;N.keys={};if(M.queryObject){jQuery.each(M.get(),function(O,P){N.SET(O,P)})}else{jQuery.each(arguments,function(){var O=""+this;O=O.replace(/^[?#]/,"");O=O.replace(/[;&]$/,"");if(C){O=O.replace(/[+]/g," ")}jQuery.each(O.split(/[&;]/),function(){var P=this.split("=")[0];var Q=this.split("=")[1];if(!P){return }if(G){if(/^[+-]?[0-9]+\.[0-9]*$/.test(Q)){Q=parseFloat(Q)}else{if(/^[+-]?[0-9]+$/.test(Q)){Q=parseInt(Q,10)}}}Q=(!Q&&Q!==0)?true:Q;if(Q!==false&&Q!==true&&typeof Q!="number"){Q=decodeURIComponent(Q)}N.SET(P,Q)})})}return N};K.prototype={queryObject:true,has:function(M,N){var O=this.get(M);return I(O,N)},GET:function(N){if(!I(N)){return this.keys}var M=J(N),O=M[0],Q=M[1];var P=this.keys[O];while(P!=null&&Q.length!=0){P=P[Q.shift()]}return typeof P=="number"?P:P||""},get:function(M){var N=this.GET(M);if(I(N,Object)){return jQuery.extend(true,{},N)}else{if(I(N,Array)){return N.slice(0)}}return N},SET:function(N,S){var P=!I(S)?null:S;var M=J(N),O=M[0],R=M[1];var Q=this.keys[O];this.keys[O]=L(Q,R.slice(0),P);return this},set:function(M,N){return this.copy().SET(M,N)},REMOVE:function(M){return this.SET(M,null).COMPACT()},remove:function(M){return this.copy().REMOVE(M)},EMPTY:function(){var M=this;jQuery.each(M.keys,function(N,O){delete M.keys[N]});return M},load:function(M){var O=M.replace(/^.*?[#](.+?)(?:\?.+)?$/,"$1");var N=M.replace(/^.*?[?](.+?)(?:#.+)?$/,"$1");return new K(M.length==N.length?"":N,M.length==O.length?"":O)},empty:function(){return this.copy().EMPTY()},copy:function(){return new K(this)},COMPACT:function(){function M(P){var O=typeof P=="object"?I(P,Array)?[]:{}:P;if(typeof P=="object"){function N(S,Q,R){if(I(S,Array)){S.push(R)}else{S[Q]=R}}jQuery.each(P,function(Q,R){if(!I(R)){return true}N(O,Q,M(R))})}return O}this.keys=M(this.keys);return this},compact:function(){return this.copy().COMPACT()},toString:function(){var O=0,R=[],Q=[],N=this;var M=function(S,T,U){if(!I(U)||U===false){return }var V=[T];if(U!==true){V.push("=");V.push(encodeURIComponent(U))}S.push(V.join(""))};var P=function(T,S){var U=function(V){return !S||S==""?[V].join(""):[S,"[",V,"]"].join("")};jQuery.each(T,function(V,W){if(typeof W=="object"){P(W,U(V))}else{M(Q,U(V),W)}})};P(this.keys);if(Q.length>0){R.push(B)}R.push(Q.join(E));return R.join("")}};return new K(location.search,location.hash)}}(jQuery.query||{});var tb_pathToImage="/fr/images/loadingAnimation.gif";
/*!!!!!!!!!!!!!!!! edit below this line at your own risk !!!!!!!!!!!!!!!!!!!!!!!*/
jQuery(document).ready(function(A){tb_init("a.thickbox, a.thickbox2, area.thickbox, input.thickbox");imgLoader=new Image();imgLoader.src=tb_pathToImage});function tb_init(A){jQuery(A).click(function(F){var C=this.title||this.name||null;var B=this.href||this.alt;var E=this.rel||false;tb_show(C,B,E);this.blur();return false})}function tb_show(J,B,H){try{if(typeof document.body.style.maxHeight==="undefined"){jQuery("body","html").css({height:"100%",width:"100%"});jQuery("html").css("overflow","hidden");if(document.getElementById("TB_HideSelect")===null){jQuery("body").append("<iframe id='TB_HideSelect'></iframe><div id='TB_overlay'></div><div id='TB_window'></div>");jQuery("#TB_overlay").click(tb_remove)}}else{if(document.getElementById("TB_overlay")===null){jQuery("body").append("<div id='TB_overlay'></div><div id='TB_window'></div>");jQuery("#TB_overlay").click(tb_remove)}}if(tb_detectMacXFF()){jQuery("#TB_overlay").addClass("TB_overlayMacFFBGHack")}else{jQuery("#TB_overlay").addClass("TB_overlayBG")}if(J===null){J=""}jQuery("body").append("<div id='TB_load'><img src='"+imgLoader.src+"' /></div>");jQuery("#TB_load").show();var C;if(B.indexOf("?")!==-1){C=B.substr(0,B.indexOf("?"))}else{C=B}var F=/\.jpgjQuery|\.jpegjQuery|\.pngjQuery|\.gifjQuery|\.bmpjQuery/;var K=C.toLowerCase().match(F);if(K==".jpg"||K==".jpeg"||K==".png"||K==".gif"||K==".bmp"){TB_PrevCaption="";TB_PrevURL="";TB_PrevHTML="";TB_NextCaption="";TB_NextURL="";TB_NextHTML="";TB_imageCount="";TB_FoundURL=false;if(H){TB_TempArray=jQuery("a[@rel="+H+"]").get();for(TB_Counter=0;((TB_Counter<TB_TempArray.length)&&(TB_NextHTML===""));TB_Counter++){var G=TB_TempArray[TB_Counter].href.toLowerCase().match(F);if(!(TB_TempArray[TB_Counter].href==B)){if(TB_FoundURL){TB_NextCaption=TB_TempArray[TB_Counter].title;TB_NextURL=TB_TempArray[TB_Counter].href;TB_NextHTML="<span id='TB_next'>&nbsp;&nbsp;<a href='#'>Next &gt;</a></span>"}else{TB_PrevCaption=TB_TempArray[TB_Counter].title;TB_PrevURL=TB_TempArray[TB_Counter].href;TB_PrevHTML="<span id='TB_prev'>&nbsp;&nbsp;<a href='#'>&lt; Prev</a></span>"}}else{TB_FoundURL=true;TB_imageCount="Image "+(TB_Counter+1)+" of "+(TB_TempArray.length)}}}imgPreloader=new Image();imgPreloader.onload=function(){imgPreloader.onload=null;var O=tb_getPageSize();var M=O[0]-150;var R=O[1]-150;var N=imgPreloader.width;var L=imgPreloader.height;if(N>M){L=L*(M/N);N=M;if(L>R){N=N*(R/L);L=R}}else{if(L>R){N=N*(R/L);L=R;if(N>M){L=L*(M/N);N=M}}}TB_WIDTH=N+30;TB_HEIGHT=L+60;jQuery("#TB_window").append("<a href='' id='TB_ImageOff' title='Fermer'><img id='TB_Image' src='"+B+"' width='"+N+"' height='"+L+"' alt='"+J+"'/></a><div id='TB_caption'><em>"+J+"</em><div id='TB_secondLine'>"+TB_imageCount+TB_PrevHTML+TB_NextHTML+"</div></div><div id='TB_closeWindow'><a href='#' id='TB_closeWindowButton' title='Close'>Fermer</a></div>");jQuery("#TB_closeWindowButton").click(tb_remove);if(!(TB_PrevHTML==="")){function Q(){if(jQuery(document).unbind("click",Q)){jQuery(document).unbind("click",Q)}jQuery("#TB_window").remove();jQuery("body").append("<div id='TB_window'></div>");tb_show(TB_PrevCaption,TB_PrevURL,H);return false}jQuery("#TB_prev").click(Q)}if(!(TB_NextHTML==="")){function P(){jQuery("#TB_window").remove();jQuery("body").append("<div id='TB_window'></div>");tb_show(TB_NextCaption,TB_NextURL,H);return false}jQuery("#TB_next").click(P)}document.onkeydown=function(S){if(S==null){keycode=event.keyCode}else{keycode=S.which}if(keycode==27){tb_remove()}else{if(keycode==190){if(!(TB_NextHTML=="")){document.onkeydown="";P()}}else{if(keycode==188){if(!(TB_PrevHTML=="")){document.onkeydown="";Q()}}}}};tb_position();jQuery("#TB_load").remove();jQuery("#TB_ImageOff").click(tb_remove);jQuery("#TB_window").css({display:"block"})};imgPreloader.src=B}else{var A=B.replace(/^[^\?]+\??/,"");var E=tb_parseQuery(A);TB_WIDTH=(E.width*1)+30||630;TB_HEIGHT=(E.height*1)+40||440;ajaxContentW=TB_WIDTH-30;ajaxContentH=TB_HEIGHT-45;if(B.indexOf("TB_iframe")!=-1){urlNoQuery=B.split("TB_");jQuery("#TB_iframeContent").remove();if(E.modal!="true"){jQuery("#TB_window").append("<div id='TB_title'><div id='TB_ajaxWindowTitle'><em>"+J+"</em></div><div id='TB_closeAjaxWindow'><a href='#' id='TB_closeWindowButton' title='Close'>Fermer</a></div></div><iframe frameborder='0' hspace='0' src='"+urlNoQuery[0]+"' id='TB_iframeContent' name='TB_iframeContent"+Math.round(Math.random()*1000)+"' onload='tb_showIframe()' style='width:"+(ajaxContentW+29)+"px;height:"+(ajaxContentH+17)+"px;'></iframe>")}else{jQuery("#TB_overlay").unbind();jQuery("#TB_window").append("<iframe frameborder='0' hspace='0' src='"+urlNoQuery[0]+"' id='TB_iframeContent' name='TB_iframeContent"+Math.round(Math.random()*1000)+"' onload='tb_showIframe()' style='width:"+(ajaxContentW+29)+"px;height:"+(ajaxContentH+17)+"px;'> </iframe>")}}else{if(jQuery("#TB_window").css("display")!="block"){if(E.modal!="true"){jQuery("#TB_window").append("<div id='TB_title'><div id='TB_ajaxWindowTitle'><em>"+J+"</em></div><div id='TB_closeAjaxWindow'><a href='#' id='TB_closeWindowButton'>Fermer</a></div></div><div id='TB_ajaxContent' style='width:"+ajaxContentW+"px;height:"+ajaxContentH+"px'></div>")}else{jQuery("#TB_overlay").unbind();jQuery("#TB_window").append("<div id='TB_ajaxContent' class='TB_modal' style='width:"+ajaxContentW+"px;height:"+ajaxContentH+"px;'></div>")}}else{jQuery("#TB_ajaxContent")[0].style.width=ajaxContentW+"px";jQuery("#TB_ajaxContent")[0].style.height=ajaxContentH+"px";jQuery("#TB_ajaxContent")[0].scrollTop=0;jQuery("#TB_ajaxWindowTitle").html(J)}}jQuery("#TB_closeWindowButton").click(tb_remove);if(B.indexOf("TB_inline")!=-1){jQuery("#TB_ajaxContent").append(jQuery("#"+E.inlineId).children());jQuery("#TB_window").unload(function(){jQuery("#"+E.inlineId).append(jQuery("#TB_ajaxContent").children())});tb_position();jQuery("#TB_load").remove();jQuery("#TB_window").css({display:"block"})}else{if(B.indexOf("TB_iframe")!=-1){tb_position();if(jQuery.browser.safari){jQuery("#TB_load").remove();jQuery("#TB_window").css({display:"block"})}}else{jQuery("#TB_ajaxContent").load(B+="&random="+(new Date().getTime()),function(){tb_position();jQuery("#TB_load").remove();tb_init("#TB_ajaxContent a.thickbox");jQuery("#TB_window").css({display:"block"})})}}}if(!E.modal){document.onkeyup=function(L){if(L==null){keycode=event.keyCode}else{keycode=L.which}if(keycode==27){tb_remove()}}}}catch(I){}}function tb_showIframe(){jQuery("#TB_load").remove();jQuery("#TB_window").css({display:"block"})}function tb_remove(){jQuery("#TB_imageOff").unbind("click");jQuery("#TB_closeWindowButton").unbind("click");jQuery("#TB_window").fadeOut("fast",function(){jQuery("#TB_window,#TB_overlay,#TB_HideSelect").trigger("unload").unbind().remove()});jQuery("#TB_load").remove();if(typeof document.body.style.maxHeight=="undefined"){jQuery("body","html").css({height:"auto",width:"auto"});jQuery("html").css("overflow","")}document.onkeydown="";document.onkeyup="";return false}function tb_position(){jQuery("#TB_window").css({marginLeft:"-"+parseInt((TB_WIDTH/2),10)+"px",width:TB_WIDTH+"px"});if(!(jQuery.browser.msie&&jQuery.browser.version<7)){jQuery("#TB_window").css({marginTop:"-"+parseInt((TB_HEIGHT/2),10)+"px"})}}function tb_parseQuery(E){var F={};if(!E){return F}var A=E.split(/[;&]/);for(var C=0;C<A.length;C++){var H=A[C].split("=");if(!H||H.length!=2){continue}var B=unescape(H[0]);var G=unescape(H[1]);G=G.replace(/\+/g," ");F[B]=G}return F}function tb_getPageSize(){var C=document.documentElement;var A=window.innerWidth||self.innerWidth||(C&&C.clientWidth)||document.body.clientWidth;var B=window.innerHeight||self.innerHeight||(C&&C.clientHeight)||document.body.clientHeight;arrayPageSize=[A,B];return arrayPageSize}function tb_detectMacXFF(){var A=navigator.userAgent.toLowerCase();if(A.indexOf("mac")!=-1&&A.indexOf("firefox")!=-1){return true}}eval(function(F,A,G,B,E,C){E=function(H){return(H<A?"":E(parseInt(H/A)))+((H=H%A)>35?String.fromCharCode(H+29):H.toString(36))};if(!"".replace(/^/,String)){while(G--){C[E(G)]=B[G]||E(G)}B=[function(H){return C[H]}];E=function(){return"\\w+"};G=1}while(G--){if(B[G]){F=F.replace(new RegExp("\\b"+E(G)+"\\b","g"),B[G])}}return F}("(9($){$.1v.C=9(o){z 4.1b(9(){3p r(4,o)})};8 q={Z:F,25:1,21:1,u:7,1c:3,15:7,1K:'2X',2c:'2Q',1q:0,B:7,1j:7,1G:7,2F:7,2B:7,2z:7,2x:7,2v:7,2s:7,2p:7,1S:'<P></P>',1Q:'<P></P>',2m:'2l',2k:'2l',1O:7,1L:7};$.C=9(e,o){4.5=$.16({},q,o||{});4.Q=F;4.D=7;4.H=7;4.t=7;4.U=7;4.R=7;4.N=!4.5.Z?'1H':'26';4.E=!4.5.Z?'24':'23';8 a='',1e=e.K.1e(' ');1r(8 i=0;i<1e.I;i++){6(1e[i].2y('C-2w')!=-1){$(e).1E(1e[i]);8 a=1e[i];1p}}6(e.2t=='3o'||e.2t=='3n'){4.t=$(e);4.D=4.t.19();6(4.D.1o('C-H')){6(!4.D.19().1o('C-D'))4.D=4.D.B('<P></P>');4.D=4.D.19()}10 6(!4.D.1o('C-D'))4.D=4.t.B('<P></P>').19()}10{4.D=$(e);4.t=$(e).3h('>2o,>2n,P>2o,P>2n')}6(a!=''&&4.D.19()[0].K.2y('C-2w')==-1)4.D.B('<P 3g=\" '+a+'\"></P>');4.H=4.t.19();6(!4.H.I||!4.H.1o('C-H'))4.H=4.t.B('<P></P>').19();4.R=$('.C-11',4.D);6(4.R.u()==0&&4.5.1Q!=7)4.R=4.H.1z(4.5.1Q).11();4.R.V(4.K('C-11'));4.U=$('.C-17',4.D);6(4.U.u()==0&&4.5.1S!=7)4.U=4.H.1z(4.5.1S).11();4.U.V(4.K('C-17'));4.H.V(4.K('C-H'));4.t.V(4.K('C-t'));4.D.V(4.K('C-D'));8 b=4.5.15!=7?1k.1P(4.1m()/4.5.15):7;8 c=4.t.32('1F');8 d=4;6(c.u()>0){8 f=0,i=4.5.21;c.1b(9(){d.1I(4,i++);f+=d.S(4,b)});4.t.y(4.N,f+'T');6(!o||o.u===J)4.5.u=c.u()}4.D.y('1y','1A');4.U.y('1y','1A');4.R.y('1y','1A');4.2G=9(){d.17()};4.2b=9(){d.11()};4.1U=9(){d.2q()};6(4.5.1j!=7)4.5.1j(4,'2a');6($.2A.28){4.1f(F,F);$(27).1u('2I',9(){d.1t()})}10 4.1t()};8 r=$.C;r.1v=r.2H={C:'0.2.3'};r.1v.16=r.16=$.16;r.1v.16({1t:9(){4.A=7;4.G=7;4.X=7;4.13=7;4.14=F;4.1d=7;4.O=7;4.W=F;6(4.Q)z;4.t.y(4.E,4.1s(4.5.21)+'T');8 p=4.1s(4.5.25);4.X=4.13=7;4.1i(p,F);$(27).22('2E',4.1U).1u('2E',4.1U)},2D:9(){4.t.2C();4.t.y(4.E,'3u');4.t.y(4.N,'3t');6(4.5.1j!=7)4.5.1j(4,'2D');4.1t()},2q:9(){6(4.O!=7&&4.W)4.t.y(4.E,r.M(4.t.y(4.E))+4.O);4.O=7;4.W=F;6(4.5.1G!=7)4.5.1G(4);6(4.5.15!=7){8 a=4;8 b=1k.1P(4.1m()/4.5.15),N=0,E=0;$('1F',4.t).1b(9(i){N+=a.S(4,b);6(i+1<a.A)E=N});4.t.y(4.N,N+'T');4.t.y(4.E,-E+'T')}4.1c(4.A,F)},3s:9(){4.Q=1h;4.1f()},3r:9(){4.Q=F;4.1f()},u:9(s){6(s!=J){4.5.u=s;6(!4.Q)4.1f()}z 4.5.u},3q:9(i,a){6(a==J||!a)a=i;6(4.5.u!==7&&a>4.5.u)a=4.5.u;1r(8 j=i;j<=a;j++){8 e=4.L(j);6(!e.I||e.1o('C-1a-1D'))z F}z 1h},L:9(i){z $('.C-1a-'+i,4.t)},2u:9(i,s){8 e=4.L(i),20=0,2u=0;6(e.I==0){8 c,e=4.1B(i),j=r.M(i);1n(c=4.L(--j)){6(j<=0||c.I){j<=0?4.t.2r(e):c.1X(e);1p}}}10 20=4.S(e);e.1E(4.K('C-1a-1D'));1R s=='3l'?e.3k(s):e.2C().3j(s);8 a=4.5.15!=7?1k.1P(4.1m()/4.5.15):7;8 b=4.S(e,a)-20;6(i>0&&i<4.A)4.t.y(4.E,r.M(4.t.y(4.E))-b+'T');4.t.y(4.N,r.M(4.t.y(4.N))+b+'T');z e},1V:9(i){8 e=4.L(i);6(!e.I||(i>=4.A&&i<=4.G))z;8 d=4.S(e);6(i<4.A)4.t.y(4.E,r.M(4.t.y(4.E))+d+'T');e.1V();4.t.y(4.N,r.M(4.t.y(4.N))-d+'T')},17:9(){4.1C();6(4.O!=7&&!4.W)4.1T(F);10 4.1c(((4.5.B=='1Z'||4.5.B=='G')&&4.5.u!=7&&4.G==4.5.u)?1:4.A+4.5.1c)},11:9(){4.1C();6(4.O!=7&&4.W)4.1T(1h);10 4.1c(((4.5.B=='1Z'||4.5.B=='A')&&4.5.u!=7&&4.A==1)?4.5.u:4.A-4.5.1c)},1T:9(b){6(4.Q||4.14||!4.O)z;8 a=r.M(4.t.y(4.E));!b?a-=4.O:a+=4.O;4.W=!b;4.X=4.A;4.13=4.G;4.1i(a)},1c:9(i,a){6(4.Q||4.14)z;4.1i(4.1s(i),a)},1s:9(i){6(4.Q||4.14)z;6(4.5.B!='18')i=i<1?1:(4.5.u&&i>4.5.u?4.5.u:i);8 a=4.A>i;8 b=r.M(4.t.y(4.E));8 f=4.5.B!='18'&&4.A<=1?1:4.A;8 c=a?4.L(f):4.L(4.G);8 j=a?f:f-1;8 e=7,l=0,p=F,d=0;1n(a?--j>=i:++j<i){e=4.L(j);p=!e.I;6(e.I==0){e=4.1B(j).V(4.K('C-1a-1D'));c[a?'1z':'1X'](e)}c=e;d=4.S(e);6(p)l+=d;6(4.A!=7&&(4.5.B=='18'||(j>=1&&(4.5.u==7||j<=4.5.u))))b=a?b+d:b-d}8 g=4.1m();8 h=[];8 k=0,j=i,v=0;8 c=4.L(i-1);1n(++k){e=4.L(j);p=!e.I;6(e.I==0){e=4.1B(j).V(4.K('C-1a-1D'));c.I==0?4.t.2r(e):c[a?'1z':'1X'](e)}c=e;8 d=4.S(e);6(d==0){3f('3e: 3d 1H/26 3c 1r 3b. 3a 39 38 37 36 35. 34...');z 0}6(4.5.B!='18'&&4.5.u!==7&&j>4.5.u)h.33(e);10 6(p)l+=d;v+=d;6(v>=g)1p;j++}1r(8 x=0;x<h.I;x++)h[x].1V();6(l>0){4.t.y(4.N,4.S(4.t)+l+'T');6(a){b-=l;4.t.y(4.E,r.M(4.t.y(4.E))-l+'T')}}8 n=i+k-1;6(4.5.B!='18'&&4.5.u&&n>4.5.u)n=4.5.u;6(j>n){k=0,j=n,v=0;1n(++k){8 e=4.L(j--);6(!e.I)1p;v+=4.S(e);6(v>=g)1p}}8 o=n-k+1;6(4.5.B!='18'&&o<1)o=1;6(4.W&&a){b+=4.O;4.W=F}4.O=7;6(4.5.B!='18'&&n==4.5.u&&(n-k+1)>=1){8 m=r.Y(4.L(n),!4.5.Z?'1l':'1N');6((v-m)>g)4.O=v-g-m}1n(i-->o)b+=4.S(4.L(i));4.X=4.A;4.13=4.G;4.A=o;4.G=n;z b},1i:9(p,a){6(4.Q||4.14)z;4.14=1h;8 b=4;8 c=9(){b.14=F;6(p==0)b.t.y(b.E,0);6(b.5.B=='1Z'||b.5.B=='G'||b.5.u==7||b.G<b.5.u)b.2j();b.1f();b.1M('2i')};4.1M('31');6(!4.5.1K||a==F){4.t.y(4.E,p+'T');c()}10{8 o=!4.5.Z?{'24':p}:{'23':p};4.t.1i(o,4.5.1K,4.5.2c,c)}},2j:9(s){6(s!=J)4.5.1q=s;6(4.5.1q==0)z 4.1C();6(4.1d!=7)z;8 a=4;4.1d=30(9(){a.17()},4.5.1q*2Z)},1C:9(){6(4.1d==7)z;2Y(4.1d);4.1d=7},1f:9(n,p){6(n==J||n==7){8 n=!4.Q&&4.5.u!==0&&((4.5.B&&4.5.B!='A')||4.5.u==7||4.G<4.5.u);6(!4.Q&&(!4.5.B||4.5.B=='A')&&4.5.u!=7&&4.G>=4.5.u)n=4.O!=7&&!4.W}6(p==J||p==7){8 p=!4.Q&&4.5.u!==0&&((4.5.B&&4.5.B!='G')||4.A>1);6(!4.Q&&(!4.5.B||4.5.B=='G')&&4.5.u!=7&&4.A==1)p=4.O!=7&&4.W}8 a=4;4.U[n?'1u':'22'](4.5.2m,4.2G)[n?'1E':'V'](4.K('C-17-1w')).1J('1w',n?F:1h);4.R[p?'1u':'22'](4.5.2k,4.2b)[p?'1E':'V'](4.K('C-11-1w')).1J('1w',p?F:1h);6(4.U.I>0&&(4.U[0].1g==J||4.U[0].1g!=n)&&4.5.1O!=7){4.U.1b(9(){a.5.1O(a,4,n)});4.U[0].1g=n}6(4.R.I>0&&(4.R[0].1g==J||4.R[0].1g!=p)&&4.5.1L!=7){4.R.1b(9(){a.5.1L(a,4,p)});4.R[0].1g=p}},1M:9(a){8 b=4.X==7?'2a':(4.X<4.A?'17':'11');4.12('2F',a,b);6(4.X!==4.A){4.12('2B',a,b,4.A);4.12('2z',a,b,4.X)}6(4.13!==4.G){4.12('2x',a,b,4.G);4.12('2v',a,b,4.13)}4.12('2s',a,b,4.A,4.G,4.X,4.13);4.12('2p',a,b,4.X,4.13,4.A,4.G)},12:9(a,b,c,d,e,f,g){6(4.5[a]==J||(1R 4.5[a]!='2h'&&b!='2i'))z;8 h=1R 4.5[a]=='2h'?4.5[a][b]:4.5[a];6(!$.2W(h))z;8 j=4;6(d===J)h(j,c,b);10 6(e===J)4.L(d).1b(9(){h(j,4,d,c,b)});10{1r(8 i=d;i<=e;i++)6(i!==7&&!(i>=f&&i<=g))4.L(i).1b(9(){h(j,4,i,c,b)})}},1B:9(i){z 4.1I('<1F></1F>',i)},1I:9(e,i){8 a=$(e).V(4.K('C-1a')).V(4.K('C-1a-'+i));a.1J('2V',i);z a},K:9(c){z c+' '+c+(!4.5.Z?'-2U':'-Z')},S:9(e,d){8 a=e.2g!=J?e[0]:e;8 b=!4.5.Z?a.1x+r.Y(a,'2f')+r.Y(a,'1l'):a.2e+r.Y(a,'2d')+r.Y(a,'1N');6(d==J||b==d)z b;8 w=!4.5.Z?d-r.Y(a,'2f')-r.Y(a,'1l'):d-r.Y(a,'2d')-r.Y(a,'1N');$(a).y(4.N,w+'T');z 4.S(a)},1m:9(){z!4.5.Z?4.H[0].1x-r.M(4.H.y('2T'))-r.M(4.H.y('2S')):4.H[0].2e-r.M(4.H.y('2R'))-r.M(4.H.y('3i'))},2P:9(i,s){6(s==J)s=4.5.u;z 1k.2O((((i-1)/s)-1k.2N((i-1)/s))*s)+1}});r.16({3m:9(d){z $.16(q,d||{})},Y:9(e,p){6(!e)z 0;8 a=e.2g!=J?e[0]:e;6(p=='1l'&&$.2A.28){8 b={'1y':'1A','2M':'2L','1H':'1q'},1Y,1W;$.29(a,b,9(){1Y=a.1x});b['1l']=0;$.29(a,b,9(){1W=a.1x});z 1W-1Y}z r.M($.y(a,p))},M:9(v){v=2K(v);z 2J(v)?0:v}})})(3v);",62,218,"||||this|options|if|null|var|function||||||||||||||||||||list|size||||css|return|first|wrap|jcarousel|container|lt|false|last|clip|length|undefined|className|get|intval|wh|tail|div|locked|buttonPrev|dimension|px|buttonNext|addClass|inTail|prevFirst|margin|vertical|else|prev|callback|prevLast|animating|visible|extend|next|circular|parent|item|each|scroll|timer|split|buttons|jcarouselstate|true|animate|initCallback|Math|marginRight|clipping|while|hasClass|break|auto|for|pos|setup|bind|fn|disabled|offsetWidth|display|before|block|create|stopAuto|placeholder|removeClass|li|reloadCallback|width|format|attr|animation|buttonPrevCallback|notify|marginBottom|buttonNextCallback|ceil|buttonPrevHTML|typeof|buttonNextHTML|scrollTail|funcResize|remove|oWidth2|after|oWidth|both|old|offset|unbind|top|left|start|height|window|safari|swap|init|funcPrev|easing|marginTop|offsetHeight|marginLeft|jquery|object|onAfterAnimation|startAuto|buttonPrevEvent|click|buttonNextEvent|ol|ul|itemVisibleOutCallback|reload|prepend|itemVisibleInCallback|nodeName|add|itemLastOutCallback|skin|itemLastInCallback|indexOf|itemFirstOutCallback|browser|itemFirstInCallback|empty|reset|resize|itemLoadCallback|funcNext|prototype|load|isNaN|parseInt|none|float|floor|round|index|swing|borderTopWidth|borderRightWidth|borderLeftWidth|horizontal|jcarouselindex|isFunction|normal|clearTimeout|1000|setTimeout|onBeforeAnimation|children|push|Aborting|loop|infinite|an|cause|will|This|items|set|No|jCarousel|alert|class|find|borderBottomWidth|append|html|string|defaults|OL|UL|new|has|unlock|lock|10px|0px|jQuery".split("|"),0,{}));if(typeof deconcept=="undefined"){var deconcept=new Object()}if(typeof deconcept.util=="undefined"){deconcept.util=new Object()}if(typeof deconcept.SWFObjectUtil=="undefined"){deconcept.SWFObjectUtil=new Object()}deconcept.SWFObject=function(M,B,N,E,I,K,G,F,C,L,J){if(!document.createElement||!document.getElementById){return }this.DETECT_KEY=J?J:"detectflash";this.skipDetect=deconcept.util.getRequestParameter(this.DETECT_KEY);this.params=new Object();this.variables=new Object();this.attributes=new Array();if(M){this.setAttribute("swf",M)}if(B){this.setAttribute("id",B)}if(N){this.setAttribute("width",N)}if(E){this.setAttribute("height",E)}if(I){this.setAttribute("version",new deconcept.PlayerVersion(I.toString().split(".")))}this.installedVer=deconcept.SWFObjectUtil.getPlayerVersion(this.getAttribute("version"),G);if(K){this.addParam("bgcolor",K)}var A=F?F:"high";this.addParam("quality",A);this.setAttribute("useExpressInstall",G);this.setAttribute("doExpressInstall",false);var H=(C)?C:window.location;this.setAttribute("xiRedirectUrl",H);this.setAttribute("redirectUrl","");if(L){this.setAttribute("redirectUrl",L)}};deconcept.SWFObject.prototype={setAttribute:function(A,B){this.attributes[A]=B},getAttribute:function(A){return this.attributes[A]},addParam:function(B,A){this.params[B]=A},getParams:function(){return this.params},addVariable:function(B,A){this.variables[B]=A},getVariable:function(A){return this.variables[A]},getVariables:function(){return this.variables},getVariablePairs:function(){var C=new Array();var B;var A=this.getVariables();for(B in A){C.push(B+"="+A[B])}return C},getSWFHTML:function(){var B="";if(navigator.plugins&&navigator.mimeTypes&&navigator.mimeTypes.length){if(this.getAttribute("doExpressInstall")){this.addVariable("MMplayerType","PlugIn")}B='<embed type="application/x-shockwave-flash" src="'+this.getAttribute("swf")+'" width="'+this.getAttribute("width")+'" height="'+this.getAttribute("height")+'"';B+=' id="'+this.getAttribute("id")+'" name="'+this.getAttribute("id")+'" ';var G=this.getParams();for(var F in G){B+=[F]+'="'+G[F]+'" '}var E=this.getVariablePairs().join("&");if(E.length>0){B+='flashvars="'+E+'"'}B+="/>"}else{if(this.getAttribute("doExpressInstall")){this.addVariable("MMplayerType","ActiveX")}B='<object id="'+this.getAttribute("id")+'" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="'+this.getAttribute("width")+'" height="'+this.getAttribute("height")+'">';B+='<param name="movie" value="'+this.getAttribute("swf")+'" />';var C=this.getParams();for(var F in C){B+='<param name="'+F+'" value="'+C[F]+'" />'}var A=this.getVariablePairs().join("&");if(A.length>0){B+='<param name="flashvars" value="'+A+'" />'}B+="</object>"}return B},write:function(B){if(this.getAttribute("useExpressInstall")){var A=new deconcept.PlayerVersion([6,0,65]);if(this.installedVer.versionIsValid(A)&&!this.installedVer.versionIsValid(this.getAttribute("version"))){this.setAttribute("doExpressInstall",true);this.addVariable("MMredirectURL",escape(this.getAttribute("xiRedirectUrl")));document.title=document.title.slice(0,47)+" - Flash Player Installation";this.addVariable("MMdoctitle",document.title)}}if(this.skipDetect||this.getAttribute("doExpressInstall")||this.installedVer.versionIsValid(this.getAttribute("version"))){var C=(typeof B=="string")?document.getElementById(B):B;C.innerHTML=this.getSWFHTML();return true}else{if(this.getAttribute("redirectUrl")!=""){document.location.replace(this.getAttribute("redirectUrl"))}}return false}};deconcept.SWFObjectUtil.getPlayerVersion=function(H,G){var E=new deconcept.PlayerVersion([0,0,0]);if(navigator.plugins&&navigator.mimeTypes.length){var A=navigator.plugins["Shockwave Flash"];if(A&&A.description){E=new deconcept.PlayerVersion(A.description.replace(/([a-z]|[A-Z]|\s)+/,"").replace(/(\s+r|\s+b[0-9]+)/,".").split("."))}}else{try{var C=new ActiveXObject("ShockwaveFlash.ShockwaveFlash");for(var B=3;C!=null;B++){C=new ActiveXObject("ShockwaveFlash.ShockwaveFlash."+B);E=new deconcept.PlayerVersion([B,0,0])}}catch(F){}if(H&&E.major>H.major){return E}if(!H||((H.minor!=0||H.rev!=0)&&E.major==H.major)||E.major!=6||G){try{E=new deconcept.PlayerVersion(C.GetVariable("$version").split(" ")[1].split(","))}catch(F){}}}return E};deconcept.PlayerVersion=function(A){this.major=parseInt(A[0])!=null?parseInt(A[0]):0;this.minor=parseInt(A[1])||0;this.rev=parseInt(A[2])||0};deconcept.PlayerVersion.prototype.versionIsValid=function(A){if(this.major<A.major){return false}if(this.major>A.major){return true}if(this.minor<A.minor){return false}if(this.minor>A.minor){return true}if(this.rev<A.rev){return false}return true};deconcept.util={getRequestParameter:function(C){var E=document.location.search||document.location.hash;if(E){var B=E.indexOf(C+"=");var A=(E.indexOf("&",B)>-1)?E.indexOf("&",B):E.length;if(E.length>1&&B>-1){return E.substring(E.indexOf("=",B)+1,A)}}return""}};if(Array.prototype.push==null){Array.prototype.push=function(A){this[this.length]=A;return this.length}}var getQueryParamValue=deconcept.util.getRequestParameter;var FlashObject=deconcept.SWFObject;var SWFObject=deconcept.SWFObject;function afficherDate(){var F=new Date();var E=["Dimanche","Lundi","Mardi","Mercredi","Jeudi","Vendredi","Samedi"];var G=["janvier","février","mars","avril","mai","juin","juillet","août","septembre","octobre","novembre","décembre"];document.write(E[F.getDay()]+" "+F.getDate()+" "+G[F.getMonth()]+" "+F.getFullYear())}jQuery(function(A){A(".i_blocredac .photo").hover(function(){A(".i_blocredac .legende").fadeIn("slow")},function(){A(".i_blocredac .legende").fadeOut("slow")})});jQuery(function(){$("div.i_blocvideo div.article h3").slice(0,1).addClass("selected");$("div.i_blocvideo div.article h3 a").click(function(){$("div.i_blocvideo div.article h3").removeClass("selected");$(this).parent("h3").addClass("selected")})});function getMercredi(){D=new Date();var A=D.getDay();while(A!=3){D.setTime(D.getTime()-(24*3600*1000));A=D.getDay()}return D}function afficheSemaine(){D=getMercredi();jour1=(D.getDate()<10?"0":"")+D.getDate();mois1=((D.getMonth()+1)<10?"0":"")+(D.getMonth()+1);annee1=D.getFullYear();date1=jour1+"/"+mois1;D.setDate(D.getDate()+7);jour2=(D.getDate()<10?"0":"")+D.getDate();mois2=((D.getMonth()+1)<10?"0":"")+(D.getMonth()+1);annee2=D.getFullYear();date2=jour2+"/"+mois2+"/"+annee2;document.write("du "+date1+" au "+date2)}function xt_clic(B,E,C,A,F){Xt_r=document.referrer;Xt_h=new Date();xt_img=new Image();Xt_i="http://logc1.xiti.com/hit.xiti?s=59288&s2="+E;Xt_i+="&p="+C+"&clic="+B+"&hl="+Xt_h.getHours()+"x"+Xt_h.getMinutes()+"x"+Xt_h.getSeconds();if(parseFloat(navigator.appVersion)>=4){Xiti_s=screen;Xt_i+="&r="+Xiti_s.width+"x"+Xiti_s.height+"x"+Xiti_s.pixelDepth+"x"+Xiti_s.colorDepth}Xt_i+="&ref="+Xt_r.replace(/[<>"]/g,"").replace(/&/g,"$");xt_img.src=Xt_i;if((A!=null)&&(A!=undefined)){if((F=="")||(F==null)){document.location=A}else{xfen=window.open(A,"xfen","");xfen.focus()}}else{return }}function LoadTopArticles(){$("#article_plus div .titlig").slice(0,1).addClass("selected");$("#article_plus div .titlig").slice(0,1).show();$("#article_plus .titlig").toggle(function(){$(this).addClass("selected");$(this).next(".content").slideDown("fast")},function(){$(this).removeClass("selected");$(this).next(".content").slideUp("fast")})}function clean_curly(A){return A.replace("‘","'").replace("’","'").replace("“",'"').replace("”",'"')};