// Fonction de scrollvar ScrollLinks = {	currentHash: false,	start: function(){		this.scroll = new fx.Scroll({duration: 600, onComplete: function(){ScrollLinks.end();}});		this.allinks = document.getElementsByTagName('a');		for (i=0; i<this.allinks.length; i++){			var lnk = this.allinks[i];			if ((lnk.href && lnk.href.indexOf('#') != -1) && ( (lnk.pathname == location.pathname) || ('/'+lnk.pathname == location.pathname) ) && (lnk.search == location.search)) {				lnk.onclick = function(){					ScrollLinks.scroll.clearTimer();					this.initialHref = this.href;					this.initialHash = this.hash;					this.href = "javascript:void(0)";					setTimeout(function(){this.href = this.initialHref;}.bind(this), 200);					ScrollLinks.click(this);				}			}		}	},	click: function(link){		this.currentHash = link.initialHash.substr(1);		if (this.currentHash) {			for (j=0; j<this.allinks.length; j++){				if (this.allinks[j].id == this.currentHash){					if (!window.opera) this.scroll.scrollTo(this.allinks[j]);					else this.scroll.scrollTo(this.allinks[j].parentNode);					break;				}			}		}	},	end: function(){		window.location.href = "#"+this.currentHash;		this.currentHash = false;	}}function bascule(id) {var d = document.getElementById(id);var y =document.getElementById("onglet_"+id)	for (var i = 1; i<=10; i++) {		if (document.getElementById('liste'+i)){		document.getElementById('liste'+i).style.display='none';		document.getElementById('onglet_liste'+i).className= "";		}	}if (d) {	d.style.display='block';	y.className= "active";}}//id=service1 ou service2function bascule_1(id) {var d = document.getElementById(id);var y =document.getElementById("onglet_"+id)	for (var i = 1; i<=10; i++) {		if (document.getElementById('service'+i)){		document.getElementById('service'+i).style.display='none';		document.getElementById('onglet_service'+i).className= "";		}	}if (d) {	d.style.display='block';	y.className= "active";}}<!--var Popup = function Popup(Adresse_de_la_page,Nom_de_la_fenetre){window.open(Adresse_de_la_page,Nom_de_la_fenetre,'height=550,width=430,toolbar=no,menubar=no,scrollbars=yes,resizable=yes,location=no,directories=no,status=no')}-->