/*
	Objet TS :: v2.3 2011_06
	© 2009-2011 Vincent Humeau :: Trans-Sphère - Internet & Multimédia :: trans-sphere.com
*/
var TS={$:function(a){return typeof(a)=="string"?document.getElementById(a):a},isIE:!!navigator.userAgent.match(/MSIE\s(\d{1,2})/),isWin:!!navigator.userAgent.match(/Windows/i),isMac:!!navigator.userAgent.match(/Macintosh/i),vIE:function(){return parseInt(navigator.userAgent.match(/MSIE\s(\d{1,2})/)[1])},scrDims:function(){return{width:screen.width,height:screen.height}},winDims:function(){return{width:TS.isIE?document.documentElement.clientWidth:window.innerWidth,height:TS.isIE?document.documentElement.clientHeight:window.innerHeight}},docDims:function(){return{width:document.body.offsetWidth?document.body.offsetWidth:document.body.scrollWidth,height:document.body.offsetHeight?document.body.offsetHeight:document.body.scrollHeight}},curPos:function(b){var a=(b)?((TS.isIE&&(TS.vIE()<9))?b.clientX+document.body.scrollLeft+document.documentElement.scrollLeft:b.pageX):event.clientX,c=(b)?((TS.isIE&&(TS.vIE()<9))?b.clientY+document.body.scrollTop+document.documentElement.scrollTop:b.pageY):event.clientY;return[a,c]},urlSite:"http://"+window.location.hostname+"/",Cookie_var:{ok:function(){return(window.navigator.cookieEnabled&&(document.cookie.length>0))?true:false},explode:function(){return(TS.Cookie_var.ok())?document.cookie.split("; "):false},get:function(d){var c=TS.Cookie_var.explode();if(c){var e=new RegExp();e.compile("^"+d+"=(.*)");for(var b in c){var a=e.exec(c[b]);if(a&&(a[1].length>0)){return unescape(a[1])}}}else{return false}},put:function(f,d){if(window.navigator.cookieEnabled){var e=f+"="+escape(d)+";";if(TS.isIE){var c=(arguments[2])?arguments[2]:12,b=new Date();var a=b.getTime()+(c*60*60*1000);b.setTime(a);e+=" expires="+b.toGMTString()+"; path=/"}document.cookie=e;return true}return false}},Special:{unlock:function(b){for(var a in b){TS.Dom.Html.insert(b[a].id,b[a].str.inverse().replace(/#/g,String.fromCharCode(64)))}},centrize:function(a){TS.$(a).style.margin=(TS.winDims().height>TS.docDims().height)?Math.floor((TS.winDims().height-TS.docDims().height)/2)+"px auto":"auto"},saveH:function(){TS.Cookie_var.put("H",TS.winDims().height)},compatible:function(){var a=(document.cookie&&document.cookie.match(/obsolete/))?true:false;if(TS.isIE&&(TS.vIE()<7)&&!a){alert("Votre navigateur est obsolète (et dangeureux)!\nVous risquez de subir quelques difficultés de navigation et d'affichage au cours  de votre visite.\nVeuillez effectuer une mise à jour.");if(navigator.cookieEnabled){TS.Cookie_var.put("obsolete","1",3)}}}},Style:{desc:function(c){var b="";for(var a in TS.$(c).style){b+=a+"="+TS.$(c).style[a]+"\n"}return b},getComputed:function(b,a){return window.getComputedStyle?document.defaultView.getComputedStyle(TS.$(b),"").getPropertyValue(a):TS.$(b).currentStyle[a]},get:function(id,prop){if(id&&TS.$(id)&&TS.$(id).style){for(var p in TS.$(id).style){if(((TS.$(id).style[p]==prop)||(p==prop))&&(TS.$(id).style[prop])){return TS.$(id).style[prop]}}}var cssRegles=(TS.isIE)?"rules":"cssRules",labels=[id,"#"+id];if(TS.$(id)){labels.push(TS.$(id).nodeName.toLowerCase()+"#"+id);var labels_class=(TS.$(id).className!="")?TS.Style.Class.getAll(id):false;if(labels_class){for(var i in labels_class){labels.push("."+labels_class[i],TS.$(id).nodeName.toLowerCase()+"."+id)}}}if(arguments[2]&&!(arguments[2] in labels)){labels.push(arguments[2])}for(var feuille=0;feuille<document.styleSheets.length;feuille++){for(var regle=0;regle<document.styleSheets[feuille][cssRegles].length;regle++){var currentLabel=document.styleSheets[feuille][cssRegles][regle].selectorText;if(typeof currentLabel=="string"){for(var i in labels){eval("var matcher = currentLabel.toLowerCase().match(/"+labels[i]+"(s*,|$)/);");if(matcher){return document.styleSheets[feuille][cssRegles][regle].style[prop]}}}}}return"undefined"},set:function(c,a){for(var b in a){if(TS.$(c).style[b]){TS.$(c).style[b]=a[b]}}},visible:function(b){for(var a in b){TS.$(b[a]).style.visibility="visible"}},invisible:function(b){for(var a in b){TS.$(b[a]).style.visibility="hidden"}},affiche:function(b){for(var a in b){TS.$(b[a]).style.display="block"}},cache:function(b){for(var a in b){TS.$(b[a]).style.display="none"}},cacheAll:function(d,c){var a=[];for(var b in c){a.push(d+c[b])}TS.Style.cache(a)},openclose:function(id){with(TS.$(id).style){display=(display=="block")?"none":"block"}},opacite:function(b){var a=(arguments[1]!=null)?arguments[1]:null;if(a==null){return(TS.isIE&&(TS.vIE()<9))?TS.$(b).filters.alpha.opacity:(100*TS.$(b).style.opacity)}else{if(TS.isIE&&(TS.vIE()<9)){TS.$(b).filters.alpha.opacity=a}else{TS.$(b).style.opacity=a/100}return null}},Class:{getAll:function(b){var a=TS.$(b).className.toString().split(" ");return a},existe:function(c,a){var b=TS.$(c).className.toString().split(" ");return(b.indexOf(a)!=-1)},ajoute:function(c,a){if(TS.Style.Class.existe(c,a)){return}var b=TS.$(c).className.toString().split(" ");b.push(a);TS.$(c).className=b.join(" ")},retire:function(f,c){if(!TS.Style.Class.existe(f,c)){return}var e=TS.$(f).className.toString().split(" "),a=new Array(),b=-1;for(var d in e){if(e[d]!=c){a[b++]=e[d]}}TS.$(f).className=(a.length)?a.join(" "):""},remplace:function(id,cible,substitut){with(TS.$(id)){eval("className = className.replace(/(^|\\s)"+cible+'(\\s|$)/g,"'+substitut+'")')}},flipflop:function(id,cible,substitut){with(TS.$(id)){eval("className = className.replace(/"+cible+'/g,"'+substitut+'")')}}}},Dom:{vidange:function(a){while(TS.$(a).firstChild){TS.$(a).removeChild(TS.$(a).firstChild)}},buildTag:function(datas){var tag=document.createElement(datas.tag);for(var i in datas.attributs){if(TS.isIE&&(TS.vIE()<8)){switch(datas.attributs[i].propriete){case"style":var styles=datas.attributs[i].valeur.split(";");for(var j in styles){var scindes=styles[j].split(":");eval("tag.style."+scindes[0].style4ie()+" = '"+scindes.slice(1,scindes.length).join(":")+"'")}break;case"class":tag.className=datas.attributs[i].valeur;break;default:if(datas.attributs[i].propriete.substr(0,2)=="on"){eval("tag."+datas.attributs[i].propriete+" = function() { "+datas.attributs[i].valeur+" }")}else{tag.setAttribute(datas.attributs[i].propriete,datas.attributs[i].valeur)}}}else{tag.setAttribute(datas.attributs[i].propriete,datas.attributs[i].valeur)}}if(datas.texte){tag.appendChild(document.createTextNode(datas.texte))}if(datas.innerTag){tag.appendChild(datas.innerTag)}if(datas.parent){TS.$(datas.parent).appendChild(tag);return null}else{return tag}},buildText:function(a){var b=document.createTextNode(a.texte);if(a.parent){TS.$(a.parent).appendChild(b);return null}else{return b}},addAttributs:function(datas){for(var i in datas.attributs){if(TS.isIE&&(TS.vIE()<8)){switch(datas.attributs[i].propriete){case"style":var styles=datas.attributs[i].valeur.split(";");for(var j in styles){var scindes=styles[j].split(":");eval("TS.$(datas.id).style."+scindes[0].style4ie()+" = '"+scindes.slice(1,scindes.length).join(":")+"'")}break;case"class":TS.$(datas.id).className=datas.attributs[i].valeur;break;default:if(datas.attributs[i].propriete.substr(0,2)=="on"){eval("tag."+datas.attributs[i].propriete+" = function() { "+datas.attributs[i].valeur+" }")}else{TS.$(datas.id).setAttribute(datas.attributs[i].propriete,datas.attributs[i].valeur)}}}else{TS.$(datas.id).setAttribute(datas.attributs[i].propriete,datas.attributs[i].valeur)}}},Html:{get:function(a){return TS.$(a).innerHTML},insert:function(b,a){TS.$(b).innerHTML=a},efface:function(a){TS.$(a).innerHTML=""},supprime:function(a){TS.$(a).outerHTML=""}}},EventListener:{add:function(c,b,a){if(document.addEventListener){TS.$(c).addEventListener(b,a,false)}else{if(document.attachEvent){TS.$(c).attachEvent("on"+b,a)}else{TS.$(c)[b]=a}}},remove:function(c,b,a){if(document.removeEventListener){TS.$(c).removeEventListener(b,a,false)}else{if(document.detachEvent){TS.$(c).detachEvent("on"+b,a)}else{TS.$(c)[b]=null}}}},Flash:{version:{standardize:function(b){var a=b.match(/[\d]+/g);a.length=3;return a.join(".")},get:function(){var a=-1;if(navigator.plugins&&navigator.plugins.length){if(navigator.plugins["Shockwave Flash"]&&navigator.plugins["Shockwave Flash"].description){a=TS.Flash.version.standardize(navigator.plugins["Shockwave Flash"].description)}}else{if(navigator.mimeTypes&&navigator.mimeTypes.length){if(navigator.mimeTypes["application/x-shockwave-flash"]&&navigator.mimeTypes["application/x-shockwave-flash"].enabledPlugin){a=TS.Flash.version.standardize(navigator.mimeTypes["application/x-shockwave-flash"].enabledPlugin.description)}}else{if(navigator.userAgent.toLowerCase().indexOf("webtv/2.6")!=-1){a=4}else{if(navigator.userAgent.toLowerCase().indexOf("webtv/2.5")!=-1){a=3}else{if(navigator.userAgent.toLowerCase().indexOf("webtv")!=-1){a=2}else{if(TS.isIE&&TS.isWin){try{var b=new ActiveXObject("ShockwaveFlash.ShockwaveFlash.7");a=TS.Flash.version.standardize(b.GetVariable("$version"))}catch(c){try{var b=new ActiveXObject("ShockwaveFlash.ShockwaveFlash.6");a="6.0.21"}catch(c){try{var b=new ActiveXObject("ShockwaveFlash.ShockwaveFlash");a=TS.Flash.version.standardize(b.GetVariable("$version"))}catch(c){}}}}}}}}}return a}},flashit:function(a,g,m,l,e,n){var f=TS.Flash.version.get(),b=(arguments[6])?arguments[6]:false,o="",j="";if(f!=-1){var k=f.match(/[\d]+/g)}if(b){var c=new Array();for(var d in b.parametres){c[d]=b.parametres[d].nom+"="+b.parametres[d].valeur}o='<param name="FlashVars" value="'+c.join("&")+'" />';j=' FlashVars="'+c.join("&")+'"'}if(parseInt(k)>=parseInt(m)){TS.$(a).innerHTML='<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab" width="'+l+'" height="'+e+'" id="'+g+'" align="middle"><param name="allowScriptAccess" value="sameDomain" /><param name="allowFullScreen" value="false" /><param name="movie" value="'+n+'" /><param name="menu" value="false" /><param name="quality" value="best" /><param name="wmode" value="transparent" /><param name="loop" value="true" />'+o+'<embed src="'+n+'" menu="false" quality="best" wmode="transparent" loop="true" width="'+l+'" height="'+e+'" name="'+g+'" align="middle" allowScriptAccess="sameDomain" allowFullScreen="false" type="application/x-shockwave-flash" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash"'+j+" /></object>"}}},Ajax:{objet:function(){if(window.XMLHttpRequest){return new XMLHttpRequest()}if(window.ActiveXObject){var c=["Msxml2.XMLHTTP.6.0","Msxml2.XMLHTTP.3.0","Msxml2.XMLHTTP","Microsoft.XMLHTTP"];for(var a in c){try{return new ActiveXObject(c[a])}catch(b){}}}window.alert("Votre navigateur est obsolète ou restreint dans ses fonctionnalités!\n\n- mettez à jour la version de votre navigateur\n- activez le support des activeX");return false},result:function(){var e=TS.Ajax.objet();if(e){var d=arguments[0],f=arguments[1],c=arguments[2],b=arguments[3],a=arguments[4];e.onreadystatechange=function(){if(e.readyState==4){switch(e.status){case 200:TS.Ajax.treat(e.responseText,d);break;default:alert("Échec de la requête ("+e.status+")");TS.Throbber("off")}}};e.open(b,f,a);if((b=="POST")&&(c!=null)){e.setRequestHeader("Content-Type","application/x-www-form-urlencoded; charset=UTF-8");c=encodeURI(c)}e.send(c)}},treat:function(){var reponse=arguments[0],destinataire=arguments[1],code_deb=new RegExp();code_deb.compile("^<!-- JSdeb::(.*)-->\n"),code_end=new RegExp();code_end.compile("<!-- JSend::(.*)-->$"),params=false;if(code_deb.test(reponse)){eval(code_deb.exec(reponse)[1])}if(destinataire){var reponseX=reponse.replace(/<!--.*-->/g,"");if(params){if((params.way=="ai_add")&&(TS.Style.get(ajax_infrastructure,"display")=="none")){params.way="body_add"}switch(params.way){case"body_add":var newNode=document.createElement("div");for(attr in params){if(attr!="way"){if((attr=="class")&&(TS.isIE&&(TS.vIE()<8))){newNode.setAttribute("className",params[attr])}else{if((attr=="style")&&(TS.isIE&&(TS.vIE()<8))){newNode.style.setAttribute("cssText",params[attr])}else{if((attr=="onmouseover")&&(TS.isIE&&(TS.vIE()<8))){eval("newNode.onmouseover = function() { "+params[attr]+" }")}else{newNode.setAttribute(attr,params[attr])}}}}}newNode.innerHTML=reponseX;document.getElementsByTagName("body")[0].appendChild(newNode);break;case"ai_add":var newNode=document.createElement("div");for(attr in params){if(attr!="way"){if((attr=="class")&&(TS.isIE&&(TS.vIE()<8))){newNode.setAttribute("className",params[attr])}else{if((attr=="style")&&(TS.isIE&&(TS.vIE()<8))){newNode.style.setAttribute("cssText",params[attr])}else{if((attr=="onmouseover")&&(TS.isIE&&(TS.vIE()<8))){eval("newNode.onmouseover = function() { "+params[attr]+" }")}else{newNode.setAttribute(attr,params[attr])}}}}}newNode.innerHTML=reponseX;document.getElementById(destinataire).appendChild(newNode);break}}else{TS.$(destinataire).innerHTML=reponseX}}if(code_end.test(reponse)){eval(code_end.exec(reponse)[1])}TS.Throbber("off")},start:function(){var d=(arguments[0]!=null)?arguments[0]:false,e=(arguments[1]!=null)?arguments[1]:"null",c=(arguments[2])?arguments[2]:null,b=(arguments[3])?arguments[3]:"POST",a=(arguments[4])?arguments[4]:true;TS.Throbber("on");TS.Ajax.result(d,e,c,b,a)}},Throbber:function(){var b="throbber_tank";switch(arguments[0]){case"build":TS.Dom.buildTag({parent:TS.$(document.body),tag:"div",attributs:[{propriete:"id",valeur:b},{propriete:"style",valeur:"display:none"}],innerTag:TS.Dom.buildTag({tag:"img",attributs:[{propriete:"id",valeur:"throbber"},{propriete:"src",valeur:urls.lib+"swf/throbber.gif"},{propriete:"alt",valeur:"throbber"}]})});var a=(arguments[1])?arguments[1]:{css:"body",prop:"backgroundColor"};TS.Flash.flashit(b,"throbberSwf",9,60,60,urls.lib+"swf/throbber_dyn.swf",{parametres:[{nom:"paramColor",valeur:TS.Style.get(a.css,a.prop).rgb2hex("0x")}]});break;case"on":TS.Style.affiche([b]);break;case"off":TS.Style.cache([b]);break}},Images:{preload:function(c){if((typeof urls=="undefined")||(typeof urls.lib=="undefined")){alert("pathlib non defini...")}else{var a=new Array();for(var b in c){a[b]=new Image();a[b].src=urls.lib+c[b]}}},loaded:function(){var total=document.images.length,real=0;for(var i=0;i<total;i++){real+=(document.images[i].complete==true)?1:0}if(real==total){window.clearInterval(arguments[0]);eval(arguments[1]+"()")}}}};String.prototype.trim=function(){return this.replace(/(^\s*)|(\s*$)/g,"")};String.prototype.inverse=function(){var b="";for(var a=(this.length-1);a>=0;a--){b+=this.substr(a,1)}return b};String.prototype.rgb2hex=function(a){if(this.charAt(0)=="#"){return a+this.substr(1)}else{var c=/^rgb\((\d{1,3}),\s*(\d{1,3}),\s*(\d{1,3})\)$/;var b=c.exec(this);return a+(b[1]*65536+b[2]*256+b[3]*1+16777216).toString(16).substring(1,7)}};String.prototype.evaluate=function(){var c=this.replace(/^<!--/,"").replace(/-->$/,"").trim();if(c!=null){var cs=c.split(";");for(var i in cs){if(cs[i].length){eval(cs[i].replace(/^this/,"window"))}}}};String.prototype.style4ie=function(){var a=this;for(var b=/-([a-z])/;b.test(a);a=a.replace(b,RegExp.$1.toUpperCase())){}return a};
/*
	Objet FORM :: v 1.1 
	© 2011 Vincent Humeau :: Trans-Sphère - Internet & Multimédia :: trans-sphere.com
*/
var FORM={CheckChecked:function(c,b,a){if(c.checked==true){c.value=(arguments[1])?arguments[1]:1;return true}else{c.value=(arguments[2])?arguments[2]:0;return false}},whichRadio:function(){var r=eval('document.forms["'+arguments[0]+'"].'+arguments[1]);for(var i=0;i<r.length;i++){if(r[i].checked==true){return r[i].value}}return false},isEmail:function(c){var b=c.trim();var a=new RegExp("^[a-z0-9]+([_|.|-]{1}[a-z0-9]+)*@[a-z0-9]+([_|.|-]{1}[a-z0-9]+)*[.]{1}[a-z]{2,6}$","i");if(a.test(b)){return true}else{return false}},isCP:function(a){var c=a.trim();var b=new RegExp("^[0-9]{5}$","i");if(b.test(c)){return true}else{return false}},isTel:function(c){var b=true;var a="0123456789+.-/() ";var e="";for(var d=0;d<c.length;d++){e=c.substr(d,1);if(a.indexOf(e)<0){b=false;break}}return b},etatChamps:function(f,e){var c=(arguments[2])?arguments[2]:"ok";var a=(arguments[3])?arguments[3]:"ko";switch(e){case 0:var b=c;var d=a;break;case 1:var b=a;var d=c;break}TS.Style.Class.flipflop(f,b,d)},dump_et_send:function(b,c,g){var e="";if(TS.isIE){for(var a=0;a<b.elements.length;a++){e+=((typeof b.elements[a].type=="string")&&(b.elements[a].type.match(/^(text|hidden|select|checkbox)/)))?"&"+b.elements[a].name+"="+b.elements[a].value:""}}else{for(var a in b.elements){e+=((typeof b.elements[a].type=="string")&&(b.elements[a].type.match(/^(text|hidden|select|checkbox)/)))?"&"+b.elements[a].name+"="+b.elements[a].value:""}}if(e!=""){TS.Ajax.start(g,c,e.substr(1))}}};
/*
	Classe Fader :: v 1.1 
	© 2011 Vincent Humeau :: Trans-Sphère - Internet & Multimédia :: trans-sphere.com
*/
function fader(){this._instance=arguments[0];this._id=arguments[1];this._init_val=arguments[2];this._fin_val=0;this._step=(arguments[3])?arguments[3]:1;this._auto=(arguments[4])?arguments[4]:false;this._cadence=42;this._action_out=false;this._action_in=false;if(typeof fader.initialized=="undefined"){fader.prototype.__init=function(){TS.Style.affiche([this._id]);TS.Style.opacite(this._id,this._init_val);if(this._auto){window.setTimeout(this._instance+".__auto()",this._auto[0])}};fader.prototype.__fadeout=function(a,b){if(!this._action_out){TS.Style.opacite(this._id,a);this._fin_val=b;this._action_out=window.setInterval(this._instance+".__curl_out()",this._cadence)}};fader.prototype.__curl_out=function(){var a=TS.Style.opacite(this._id);if(a>this._fin_val){TS.Style.opacite(this._id,(a-this._step))}else{this.__fin()}};fader.prototype.__fadein=function(a,b){if(!this._action_in){TS.Style.opacite(this._id,a);this._fin_val=b;this._action_in=window.setInterval(this._instance+".__curl_in()",this._cadence)}};fader.prototype.__curl_in=function(){var a=TS.Style.opacite(this._id);if(a<this._fin_val){TS.Style.opacite(this._id,(a+this._step))}else{this.__fin()}};fader.prototype.__fin=function(){if(this._action_out){window.clearInterval(this._action_out);this._action_out=false}if(this._action_in){window.clearInterval(this._action_in);this._action_in=false}TS.Style.opacite(this._id,this._fin_val);if(this._fin_val==0){TS.Style.cache([this._id])}};fader.prototype.__auto=function(){if((this._auto[1]=="out")&&!this._action_out){this.__fadeout(this._auto[2],this._auto[3])}if((this._auto[1]=="in")&&!this._action_in){this.__fadein(this._auto[2],this._auto[3])}};fader.initialized=true}this.__init()};
/*
	Classe Carrousel_vertical :: v 1.2 
	© 2010-2011 Vincent Humeau :: Trans-Sphère - Internet & Multimédia :: trans-sphere.com
*/
function carrousel_vertical(){this._instance=arguments[0];this._id=arguments[1];this._etat=arguments[2];this._opened_nb_LI=arguments[3];this._gap=arguments[4];this._timer=(arguments[5])?arguments[5]:3000;this._fx_opacity=(arguments[6])?arguments[6]:false;this._ctrl_onmouse=(arguments[7])?arguments[7]:false;this._html_out=(arguments[8])?arguments[8]:false;this._UL_tag=TS.$(this._id).getElementsByTagName("ul")[0];this._LI_tags=new Array();this._scroll_step=1;this._opacite_step=2;this._cadence=42;this._etage_depart=0;this._actif=false;this._scrolling=false;this._stopper=false;if(typeof carrousel_vertical.initialized=="undefined"){carrousel_vertical.prototype.__init=function(){var j=0;for(var i=0;i<this._UL_tag.childNodes.length;i++){if(this._UL_tag.childNodes[i].nodeName.toLowerCase()=="li"){if(this._html_out){TS.Dom.Html.efface(this._UL_tag.childNodes[i])}this._LI_tags[j]=new Array();this._LI_tags[j]["indice_LI_tag"]=i;j++}}if(this._opened_nb_LI<this._LI_tags.length){if(this._ctrl_onmouse){eval("TS.$(this._id).onmouseover = function(){"+this._instance+".__switch('off');}");eval("TS.$(this._id).onmouseout = function(){"+this._instance+".__switch('on');}")}var clone=new Array();for(var i=0;i<this._opened_nb_LI;i++){clone[i]=this._UL_tag.childNodes[this._LI_tags[i]["indice_LI_tag"]].cloneNode(true);this._UL_tag.appendChild(clone[i])}}else{this._etat="off"}this.__switch(this._etat)};carrousel_vertical.prototype.__scroll=function(target){if(!this._stopper){var topdeb=parseInt(this._UL_tag.style.top);if(topdeb>target){this._UL_tag.style.top=(topdeb-this._scroll_step)+"px";if(this._fx_opacity){var opacite=TS.Style.opacite(this._UL_tag.getElementsByTagName("li")[this._etage_depart]);if(opacite>=this._opacite_step){TS.Style.opacite(this._UL_tag.getElementsByTagName("li")[this._etage_depart],opacite-this._opacite_step)}}}else{window.clearInterval(this._scrolling);this._scrolling=false;this._UL_tag.style.top=target+"px";this.__switch("on")}}else{if(this._actif){window.clearTimeout(this._actif)}}};carrousel_vertical.prototype.__curl=function(){if(!this._stopper){var topnum=parseInt(this._UL_tag.style.top);var etage_depart=topnum/this._gap;var etage_cible=etage_depart-1;if(etage_cible==-(this._LI_tags.length+1)){this._UL_tag.style.top="0px";etage_cible=-1;etage_depart=topnum=0}if(this._fx_opacity){this._etage_depart=(etage_depart==0)?0:-(etage_depart);TS.Style.opacite(this._UL_tag.getElementsByTagName("li")[this._etage_depart],100);TS.Style.opacite(this._UL_tag.getElementsByTagName("li")[-(etage_cible)],100)}if(etage_cible>=-(this._LI_tags.length)){var hauteur_deb=topnum;var hauteur_fin=(topnum-this._gap);var hauteur=hauteur_deb;this._scrolling=window.setInterval(this._instance+".__scroll("+hauteur_fin+")",this._cadence)}}else{if(this._actif){window.clearTimeout(this._actif)}this._actif=window.setTimeout(this._instance+".__curl()",this._timer)}};carrousel_vertical.prototype.__switch=function(etat){switch(etat){case"on":this._stopper=false;if(this._actif){window.clearTimeout(this._actif)}this._actif=window.setTimeout(this._instance+".__curl()",this._timer);break;case"off":if(this._actif){window.clearTimeout(this._actif);this._actif=false;this._stopper=true}break}};carrousel_vertical.initialized=true}if(this._UL_tag!="undefined"){this.__init()}};
/*
	Class store_v :: v 1.0
	© 2010-2011 Vincent Humeau :: Trans-Sphère - Internet & Multimédia :: trans-sphere.com
*/
function store_v(){this._instance=arguments[0];this._id=arguments[1];this._Horig=arguments[2];this._Hmin=arguments[3];this._Hmax=arguments[4];this._step=(arguments[5])?arguments[5]:1;this._cadence_move=(arguments[6])?arguments[6]:42;this._retardateur=(arguments[7])?arguments[7]:false;this._code_opened=(arguments[8])?arguments[8]:false;this._code_closed=(arguments[9])?arguments[9]:false;this._code_opening=(arguments[10])?arguments[10]:false;this._code_closing=(arguments[11])?arguments[11]:false;this._opening=false;this._closing=false;this._timeout=false;if(typeof store_v.initialized=="undefined"){store_v.prototype.__open=function(){this._H=parseInt(TS.$(this._id).style.height);if(isNaN(this._H)){this._H=this._Horig}if(stopables.length>0){stopper(true)}if(this._H<this._Hmax){TS.$(this._id).style.height=(this._H+this._step)+"px"}else{window.clearInterval(this._opening);this._opening=false;TS.$(this._id).style.height=this._Hmax+"px";if(this._code_opened){eval(this._code_opened)}if(stopables.length>0){if(this._timeout){window.clearTimeout(this._timeout)}this._timeout=window.setTimeout("stopper(false)",2000)}}};store_v.prototype.__close=function(){this._H=parseInt(TS.$(this._id).style.height);if(isNaN(this._H)){this._H=this._Horig}if(stopables.length>0){stopper(true)}if(this._H>(this._Hmin+this._step)){TS.$(this._id).style.height=(this._H-this._step)+"px"}else{window.clearInterval(this._closing);this._closing=false;TS.$(this._id).style.height=this._Hmin+"px";if(this._code_closed){eval(this._code_closed)}if(stopables.length>0){if(this._timeout){window.clearTimeout(this._timeout)}this._timeout=window.setTimeout("stopper(false)",2000)}}};store_v.prototype.__treat=function(){this._H=parseInt(TS.Style.getComputed(this._id,"height"));if(isNaN(this._H)){this._H=this._Horig}if(this._opening){window.clearInterval(this._opening);this._opening=false;if(this._code_closing){eval(this._code_closing)}this._closing=window.setInterval(this._instance+".__close()",this._cadence_move)}else{if(this._closing){window.clearInterval(this._closing);this._closing=false;if(this._code_opening){eval(this._code_opening)}this._opening=window.setInterval(this._instance+".__open()",this._cadence_move)}else{if((this._H==this._Hmin)||(this._H<this._Hmax)){if(this._code_opening){eval(this._code_opening)}this._opening=window.setInterval(this._instance+".__open()",this._cadence_move)}else{if((this._H==this._Hmax)||(this._H>this._Hmin)){if(this._code_closing){eval(this._code_closing)}this._closing=window.setInterval(this._instance+".__close()",this._cadence_move)}}}}};store_v.initialized=true}if(this._retardateur){window.setTimeout(this._instance+".__treat()",this._retardateur)}};
/*
	Classe Onglets_horizontaux :: v 1.0 
	© 2005-2011 Vincent Humeau :: Trans-Sphère - Internet & Multimédia :: trans-sphere.com
*/
function onglets_h(){this._instance=arguments[0];this._prefix_num=arguments[1];this._course=arguments[2];this._first=arguments[3];this._actions=new Array(arguments[4]);this._selected_num=(arguments[5])?arguments[5]:-1;this._stop=false;this._step=(arguments[6])?arguments[6]:10;this._cadence=(arguments[7])?arguments[7]:42;this._veilleur=false;this._stopper=false;if(typeof onglets_h.initialized=="undefined"){onglets_h.prototype.__sort=function(b){if(!this._stop){var d=this._prefix_num+b;var a=parseInt(TS.$(d).style.left);if(a>0){if(this._actions[b]){window.clearInterval(this._actions[b]);this._actions[b]=false}this._actions[b]=window.setInterval(this._instance+".__moving("+b+",0)",this._cadence);if(!this._veilleur){this._veilleur=window.setInterval(this._instance+".__restaure()",5000)}}for(var c in this._actions){if(c>=this._first){if((c!=b)&&this._actions[c]){window.clearInterval(this._actions[c]);this._actions[c]=false;this._actions[c]=window.setInterval(this._instance+".__moving("+c+","+this._course+")",this._cadence)}}}}};onglets_h.prototype.__rentre=function(b){if(!this._stop){var c=this._prefix_num+b;var a=parseInt(TS.$(c).style.left);if(a<this._course){if(this._actions[b]){window.clearInterval(this._actions[b]);this._actions[b]=false}this._actions[b]=window.setInterval(this._instance+".__moving("+b+","+this._course+")",this._cadence)}}};onglets_h.prototype.__moving=function(c,b){var d=this._prefix_num+c;if(this._stop){window.clearInterval(this._actions[c]);this._actions[c]=false}else{var a=parseInt(TS.$(d).style.left);if(Math.abs(a-b)<=this._step){window.clearInterval(this._actions[c]);this._actions[c]=false;TS.$(d).style.left=b+"px"}else{TS.$(d).style.left=(a<b)?(a+this._step)+"px":(a-this._step)+"px"}}};onglets_h.prototype.__select=function(a){this._stop=true;if(this._veilleur){window.clearInterval(this._veilleur);this._veilleur=false}for(var b in this._actions){if(b>=this._first){TS.$(this._prefix_num+b).style.left=(b!=a)?this._course+"px":"0"}}};onglets_h.prototype.__restaure=function(){if(!this._stop){for(var b in this._actions){if((b>=this._first)&&(b!=this._selected_num)){if(this._actions[b]){window.clearInterval(this._actions[b]);this._actions[b]=false;this._actions[b]=window.setInterval(this._instance+".__moving("+b+","+this._course+")",this._cadence)}else{var c=this._prefix_num+b;var a=parseInt(TS.$(c).style.left);if(a<this._course){this._actions[b]=window.setInterval(this._instance+".__moving("+b+","+this._course+")",this._cadence)}}}}if(this._veilleur){window.clearInterval(this._veilleur);this._veilleur=false}}};onglets_h.initialized=true}};
/*
	Spécifique :: amexpo.fr :: v 5.4.2
	© 2011 Vincent Humeau :: Trans-Sphère - Internet & Multimédia :: trans-sphere.com
*/
function selection_on(){if(window.navigator.cookieEnabled){var a=(TS.scrDims().width>1024)?"droite":"gauche";TS.Dom.buildTag({parent:((arguments[0]&&arguments[0]=="catalogue")?"center":"bandeau"),tag:"div",attributs:[{propriete:"class",valeur:"selection acces "+a},{propriete:"onclick",valeur:"selection_open();"}]});if(TS.$("bienvenue")&&(a=="droite")){TS.$("bienvenue").style.top="220px"}}}function selection_open(){if(!TS.$("throbber_tank")){TS.Throbber("build",{css:Throbber_style.label,prop:Throbber_style.prop})}TS.Ajax.start("ai_target","__xhr/selection","h="+TS.winDims().height)}function search_couleur(a){if(TS.isIE){for(var b=0;b<a.length;b++){if(a[b].checked){return a[b].value}}}else{for(var b in a){if(a[b].checked){return a[b].value}}}return false}function selector_manager(c,a){var b=TS.$("selector_"+c).className.match(/\s([outin]{2,3})$/),d=TS.Cookie_var.get("SEL"),f=c.replace(/CMP/,"MOB")+"@"+a;var g=(d&&d.match(f))?"in":"out";var e=(g=="in")?"Ce mobilier, avec la couleur choisie, fait partie de votre sélection":"Cliquez pour insérer ce mobilier, avec la couleur choisie, dans votre sélection";TS.Style.Class.flipflop("selector_"+c,b[1],g);TS.$("selector_"+c).title=e}function selection_manager(g){if(window.navigator.cookieEnabled){var k=(arguments.length>1)?true:false;var c=(k)?[null,"in"]:TS.$("selector_"+g).className.match(/\s([outin]{2,3})$/),n=TS.Cookie_var.get("SEL"),j=false,b=g.replace(/CMP/,"MOB"),l=false;if(!k&&TS.$("f_"+g)){l=search_couleur(document.forms["f_"+g].couleur)}else{if(k&&arguments[1]!=""){l=arguments[1]}}if(l){b+="@"+l}switch(c[1]){case"out":if(n){if(!n.match(b)){j=TS.Cookie_var.put("SEL",n+"+"+b+"*1")}}else{j=TS.Cookie_var.put("SEL",b+"*1")}var e="in",m=((g.match(/^ENS/))?"Cet ensemble":"Ce mobilier"+((l)?", avec la couleur choisie,":""))+" fait partie de votre sélection";break;case"in":if(n){var d=n.split("+"),h="";for(var f in d){if(d[f].replace(/\*.+/,"")!=b){h+=((h.length==0)?"":"+")+d[f]}}j=TS.Cookie_var.put("SEL",h)}var e="out",m="Cliquez pour insérer "+((g.match(/^ENS/))?"cet ensemble":"ce mobilier"+((l)?", avec la couleur choisie,":""))+" dans votre sélection";break}if(j){if(g.match(/^(CMP|MOB)/)){var a=[g.replace(/CMP/,"MOB"),g.replace(/MOB/,"CMP")];for(var f in a){if(TS.$("selector_"+a[f])){if(!l||(l&&(l==search_couleur(document.forms["f_"+a[f]].couleur)))){TS.Style.Class.flipflop("selector_"+a[f],c[1],e);TS.$("selector_"+a[f]).title=m}}}}else{if(TS.$("selector_"+g)){TS.Style.Class.flipflop("selector_"+g,c[1],e);TS.$("selector_"+g).title=m}}}if(k){return(j)?true:false}}else{alert("Le service de sélection de mobilier repose sur la faculté de votre navigateur à accepter les cookies.\nActuellement, le paramètrage de votre navigateur interdit cette fonctionnalité.\nVeuillez modifier les paramètres de votre navigateur pour qu'il puisse accepter les cookies.")}}function selection_out(){if(arguments.length==2){if(confirm("Confirmez-vous la suppression de cette ligne ?")&&selection_manager(arguments[0].replace(/@[a-z]+/,""),arguments[0].replace(/^[A-Z0-9@]+/,""))){TS.Style.cache(["selection_"+arguments[1]]);if(typeof TS.Cookie_var.get("SEL")=="undefined"){closeX()}}}else{if(confirm("Confirmez-vous la suppression intégrale de votre sélection ?")){var b=TS.Cookie_var.get("SEL");var d=b.split("+");for(var a in d){var c=d[a].replace(/\*.+/,"");selection_manager(c.replace(/@[a-z]+/,""),c.replace(/^[A-Z0-9@]+/,""))}TS.Cookie_var.put("SEL","");closeX()}}}function selection_Q(){var selection=TS.Cookie_var.get("SEL");if(selection&&TS.$("sel_q")){var tous=selection.split("+"),new_selection="",f=document.forms.sel_q;for(var i in tous){var article=tous[i].replace(/\*.+/,"").replace("@","_");var quantite=eval("f.Q_"+article+".value");quantite=parseInt(quantite);quantite=(isNaN(quantite)||(quantite<1))?1:quantite;new_selection+=((new_selection.length==0)?"":"+")+tous[i].replace(/\*.+/,"*"+quantite)}TS.Cookie_var.put("SEL",new_selection)}}var liste_sel_base=new Array("SEL_IDENTITE","SEL_EMAIL"),liste_sel_amexpo=new Array("SEL_SOCIETE","SEL_ADRESSE","EVENEMENT"),liste_sel_amexpo_c=new Array("SEL_FAX","SEL_TEL"),liste_plus=new Array("DESTINATAIRES");function selection_obligation(h){var b=FORM.CheckChecked(h.AMEXPO),k="obligatoire",g="choix",c="facultatif";var a=(b)?k:c;for(var e=0;e<liste_sel_amexpo.length;e++){var l=TS.$(liste_sel_amexpo[e]).parentNode.parentNode.childNodes;for(var d in l){if((typeof l[d].nodeName!="undefined")&&(l[d].nodeName.match(/^td$/i))){l[d].className=a;break}}}a=(b)?g:c;for(var e=0;e<liste_sel_amexpo_c.length;e++){var l=TS.$(liste_sel_amexpo_c[e]).parentNode.parentNode.childNodes;for(var d in l){if((typeof l[d].nodeName!="undefined")&&(l[d].nodeName.match(/^td$/i))){l[d].className=a;break}}}}function partage_check_it(f){var erreur=false,amexpo=FORM.CheckChecked(f.AMEXPO),msg0="Veuillez remplir tous les champs marqués comme obligatoires.",msg1="Veuillez saisir au moins un des trois champs marqués par une étoile clignotante.",msg2="Veuillez saisir une adresse email valide.",msg3="Veuillez vérifier le numéro de fax.",msg4="Veuillez vérifier le numéro de téléphone.",msg5="Une adresse email 'En copie pour' n'est pas valide : ",cpterr=0;if(typeof f.CHECKER=="object"){f.CHECKER.value=0}var liste_all=liste_sel_base.concat(liste_sel_amexpo).concat(liste_sel_amexpo_c).concat(liste_plus);for(var i in liste_all){FORM.etatChamps(eval("f."+liste_all[i]),1)}var liste_base=(amexpo)?liste_sel_base.concat(liste_sel_amexpo):liste_sel_base;for(var i in liste_base){var champs=eval("f."+liste_base[i]);if(champs.value.trim().length==0){erreur=msg0;FORM.etatChamps(champs,0)}}if(!erreur&&amexpo){for(var i in liste_sel_amexpo_c){var champs=eval("f."+liste_sel_amexpo_c[i]);if(champs.value.trim().length==0){cpterr++}}if(cpterr==liste_sel_amexpo_c.length){erreur=msg1;for(var i in liste_sel_amexpo_c){var champs=eval("f."+liste_sel_amexpo_c[i]);FORM.etatChamps(champs,0)}}}if(!erreur&&(f.SEL_EMAIL.value.trim().length>0)&&!FORM.isEmail(f.SEL_EMAIL.value)){erreur=msg2;FORM.etatChamps(f.SEL_EMAIL,0)}if(!erreur&&(f.SEL_FAX.value.trim().length>0)&&!FORM.isTel(f.SEL_FAX.value)){erreur=msg3;FORM.etatChamps(f.SEL_FAX,0)}if(!erreur&&(f.SEL_TEL.value.trim().length>0)&&!FORM.isTel(f.SEL_TEL.value)){erreur=msg4;FORM.etatChamps(f.SEL_TEL,0)}if(!erreur&&(f.DESTINATAIRES.value.trim().length>0)){var tous=f.DESTINATAIRES.value.trim().split(",");for(var i in tous){if(!FORM.isEmail(tous[i].trim())){erreur=msg5+tous[i].trim()+".";FORM.etatChamps(f.DESTINATAIRES,0);break}}}if(erreur){alert(erreur);return false}else{if(typeof f.CHECKER!="object"){TS.Dom.buildTag({tag:"input",attributs:[{propriete:"type",valeur:"hidden"},{propriete:"name",valeur:"CHECKER"},{propriete:"value",valeur:"1"}],parent:f})}else{f.CHECKER.value=1}return true}}function impression(){if(!TS.$("form4print")){TS.Dom.buildTag({parent:"selection",tag:"form",attributs:[{propriete:"id",valeur:"form4print"},{propriete:"name",valeur:"form4print"},{propriete:"method",valeur:"post"},{propriete:"action",valeur:TS.urlSite+"impression/"+encodeURI(arguments[0])},{propriete:"target",valeur:"_blank"},{propriete:"enctype",valeur:"application/x-www-form-urlencoded"}]})}document.forms.form4print.submit()}function traductor_on(){if(window.navigator.cookieEnabled){TS.Style.affiche(["traductor"])}}function translate_me(a){TS.Cookie_var.put("LG",a);window.location.reload()}var liste_base=new Array("SOCIETE","CONTACT","TITRE"),liste_catalogue=new Array("ADRESSE","CODEPOSTAL","VILLE","TELEPHONE","OBJET"),liste_optin=new Array("EMAIL");function _papier_obligation(g){var l=FORM.CheckChecked(g.RECEVOIR),a=FORM.CheckChecked(g.OPTIN),h="obligatoire",c="facultatif";var b=(l)?h:c;for(var e=0;e<liste_catalogue.length;e++){var k=TS.$(liste_catalogue[e]).parentNode.parentNode.childNodes;for(var d in k){if((typeof k[d].nodeName!="undefined")&&(k[d].nodeName.match(/^td$/i))){k[d].className="champs "+b;break}}}b=(a)?h:c;for(var e=0;e<liste_optin.length;e++){var k=TS.$(liste_optin[e]).parentNode.parentNode.childNodes;for(var d in k){if((typeof k[d].nodeName!="undefined")&&(k[d].nodeName.match(/^td$/i))){k[d].className="champs "+b;break}}}}function _papier_check_it(f){var erreur=false,catalogue=FORM.CheckChecked(f.RECEVOIR,1,0),optin=FORM.CheckChecked(f.OPTIN),msg0="Vous n'avez émis aucun souhait. Veuillez cocher au moins une des deux cases mises à votre disposition.",msg1="Veuillez remplir tous les champs marqués comme obligatoires.",msg2="Veuillez saisir un code postal valide à 5 chiffres.",msg3="Veuillez saisir une adresse email valide.",msg4="Veuillez vérifier le numéro de téléphone.";if(!catalogue&&!optin){erreur=msg0}else{var liste_all=liste_base.concat(liste_catalogue).concat(liste_optin);for(var i in liste_all){FORM.etatChamps(eval("f."+liste_all[i]),1)}}if(!erreur){var liste_adapt=liste_base;if(catalogue){liste_adapt=liste_adapt.concat(liste_catalogue)}if(optin){liste_adapt=liste_adapt.concat(liste_optin)}for(var i in liste_adapt){var champs=eval("f."+liste_adapt[i]);if(champs.value.trim().length==0){erreur=msg1;FORM.etatChamps(champs,0)}}}if(!erreur&&(f.CODEPOSTAL.value.trim().length>0)&&!FORM.isCP(f.CODEPOSTAL.value)){erreur=msg2;FORM.etatChamps(f.CODEPOSTAL,0)}if(!erreur&&(f.TELEPHONE.value.trim().length>0)&&!FORM.isTel(f.TELEPHONE.value)){erreur=msg4;FORM.etatChamps(f.TELEPHONE,0)}if(!erreur&&(f.EMAIL.value.trim().length>0)&&!FORM.isEmail(f.EMAIL.value)){erreur=msg3;FORM.etatChamps(f.EMAIL,0)}if(erreur){alert(erreur);return false}else{TS.Dom.buildTag({tag:"input",attributs:[{propriete:"type",valeur:"hidden"},{propriete:"name",valeur:"CHECKER"},{propriete:"value",valeur:"1"}],parent:f});return true}}function ongletize(a,b){TS.Dom.Html.insert(a,TS.Dom.Html.get("r_plage"));TS.Dom.Html.insert("r_plage",TS.Dom.Html.get(b));opticonsultant()}function save_TR(a){if(window.navigator.cookieEnabled){TS.Cookie_var.put("TR",a)}}function hide_label(a){TS.Style.invisible(["catalogue_label"]);TS.Dom.Html.efface("label");a.onmousemove=null}function show_label(a,b){TS.Dom.Html.insert("label",b);TS.Style.visible(["catalogue_label"]);a.onmousemove=positionLabel}function positionLabel(e){var curPos=TS.curPos(e),x=curPos[0],y=curPos[1],larg=TS.docDims().width;y+=(TS.isIE&&(TS.vIE()<9))?document.documentElement.scrollTop:0;with(TS.$("catalogue_label").style){top=(y+32)+"px";if(TS.isIE&&(TS.vIE()<8)){var longueur=(TS.$("label").innerHTML.length*5)+12+12;left=(x<(larg*0.57))?(x+32)+"px":(x-32-longueur)+"px";right=(x>=(larg*0.57))?(larg-x+32)+"px":(larg-x-32-longueur)+"px"}else{left=(x<(larg*0.57))?(x+32)+"px":"auto";right=(x>=(larg*0.57))?(larg-x+32)+"px":"auto"}}}function openX(c){if(!TS.$("throbber_tank")){TS.Throbber("build",{css:Throbber_style.label,prop:Throbber_style.prop})}var b=(arguments[2])?arguments[2]:"body",g=arguments[1].split("&")[0].split("=")[1];if(TS.$(g)){TS.Style.affiche([g]);premier_plan(g)}else{var f="";if(g.match(/^CMP/)){var d=TS.winDims();f+="&w="+d.width+"&h="+d.height}if(g.match(/^MOB/)){var d=TS.docDims(),a=TS.curPos(c);f+="&w="+d.width+"&h="+d.height;f+="&x="+a[0]+"&y="+a[1]}TS.Ajax.start(b,"__xhr/mobilier",arguments[1]+f)}}var ajax_infrastructure="ajax_infrastructure";function closeX(){var a=(arguments[0])?arguments[0]:"ai_target";if(!arguments[0]){TS.Dom.vidange(a);TS.Style.cache([ajax_infrastructure])}else{TS.Style.cache([a])}}function zmax(c,f){var b=parseInt(c),a=(f.match(/^MOB/))?document.body.childNodes:TS.$("ai_target").childNodes;for(var e in a){if(!isNaN(e)){var d=a[e];if((typeof d!="undefined")&&(d.nodeType==1)&&(d.nodeName.match(/^div$/i))&&(d.className.match(/mobilierX/))&&(parseInt(d.style.zIndex)>b)){b=parseInt(d.style.zIndex)}}}return b}function premier_plan(b){var a=parseInt(zmax(1000,b))+1;TS.Style.set(b,{zIndex:a})}var mover=false,mover_delta_x=-286,mover_delta_y=10;function move(a){if(mover==a){move_stop()}else{move_start(a)}}function move_start(a){mover=a;TS.EventListener.add(document,"mousemove",deplace)}function move_stop(){mover=false;TS.EventListener.remove(document,"mousemove",deplace)}function deplace(b){var a=TS.curPos(b);if(mover.match(/^MOB/)){TS.Style.set(mover,{top:(a[1]+mover_delta_y)+"px",left:(a[0]+mover_delta_x)+"px"})}else{TS.Style.set(mover,{left:(a[0]+mover_delta_x)+"px"})}}function optiback(){if(TS.$("back")){TS.$("back").style.minHeight=TS.docDims().height+"px"}}function optimeubles(){if(TS.$("meubles_gauche")){TS.$("meubles_gauche").style.top=TS.docDims().height-(28+150)+"px"}if(TS.$("meubles_droite")){TS.$("meubles_droite").style.top=TS.docDims().height-(28+150)+"px"}}function opticonsultant(){if(TS.$("consultant")){TS.$("consultant").style.top=TS.docDims().height-(28+174)+"px"}}var jsolizer="jsol",urls={lib:TS.urlSite+"__lib/"},stopables=new Array(),Throbber_style={label:"body.home",prop:"backgroundColor"};function stopper(ordre){for(var objet in stopables){eval(stopables[objet]+" = "+ordre)}}function init(){optiback();if(jsolizer&&(TS.$(jsolizer)!=null)){TS.Dom.Html.get(jsolizer).evaluate()}}window.onresize=function(){optiback()};
window.onload = init;
// 0 : 15095
// 1 : 1578
// 2 : 1820
// 3 : 3423
// 4 : 2804
// 5 : 2738
// 6 : 13116
