		// =======================================
		// set the following variables
		// =======================================
		
		// Set slideShowSpeed (milliseconds)
		var vitesse = 5000
		
		// Duration of crossfade (seconds)
		var duree_du_fade = 3
		
		// Specify the image files
		var image_de_gauche = new Array() // don't touch this
		// to add more images, just continue
		// the pattern, adding to the array below
		
		image_de_gauche[0] = '/Portals/131827/images/gauche1.jpg'
		image_de_gauche[1] = '/Portals/131827/images/gauche2.jpg'
		image_de_gauche[2] = '/Portals/131827/images/gauche3.jpg'
		
		var image_de_droite = new Array() // don't touch this
		// to add more images, just continue
		// the pattern, adding to the array below
		
		image_de_droite[0] = '/Portals/131827/images/droite1.jpg'
		image_de_droite[1] = '/Portals/131827/images/droite2.jpg'
		image_de_droite[2] = '/Portals/131827/images/droite3.jpg'
		
		
		// =======================================
		// image gauche
		// =======================================
		
		var t_gauche
		var j_gauche = 0
		var p_gauche = image_de_gauche.length
		
		var preLoad_gauche = new Array()
		for (i = 0; i < p_gauche; i++){
		   preLoad_gauche[i] = new Image()
		   preLoad_gauche[i].src = image_de_gauche[i]
		}
		
		function runSlideShow_gauche(){
		   if (document.all){
		      document.images.SlideShow_gauche.style.filter="blendTrans(duration=2)"
		      document.images.SlideShow_gauche.style.filter="blendTrans(duration=duree_du_fade)"
		      document.images.SlideShow_gauche.filters.blendTrans.Apply()      
		   }
		   document.images.SlideShow_gauche.src = preLoad_gauche[j_gauche].src
		   if (document.all){
		      document.images.SlideShow_gauche.filters.blendTrans.Play()
		   }
		   j_gauche = j_gauche + 1
		   if (j_gauche > (p_gauche-1)) j_gauche=0
		   t_gauche = setTimeout('runSlideShow_gauche()', vitesse)
		}
		
		
		// =======================================
		// image droite
		// =======================================
		
		var t_droite
		var j_droite = 0
		var p_droite = image_de_droite.length
		
		var preLoad_droite = new Array()
		for (i = 0; i < p_droite; i++){
		   preLoad_droite[i] = new Image()
		   preLoad_droite[i].src = image_de_droite[i]
		}
		
		function runSlideShow_droite(){
		   if (document.all){
		      document.images.SlideShow_droite.style.filter="blendTrans(duration=2)"
		      document.images.SlideShow_droite.style.filter="blendTrans(duration=duree_du_fade)"
		      document.images.SlideShow_droite.filters.blendTrans.Apply()      
		   }
		   document.images.SlideShow_droite.src = preLoad_droite[j_droite].src
		   if (document.all){
		      document.images.SlideShow_droite.filters.blendTrans.Play()
		   }
		   j_droite = j_droite + 1
		   if (j_droite > (p_droite-1)) j_droite=0
		   t_droite = setTimeout('runSlideShow_droite()', 5500)
		}
		
		// script pour animation des boutons
	
		anglais_on = new Image();
		anglais_off = new Image();
		francais_on = new Image();
		francais_off = new Image();
		
		anglais_off.src = '/Portals/131827/images/btn_anglais_blanc.gif';
		anglais_on.src = '/Portals/131827/images/btn_anglais_jaune.gif';
		francais_off.src = '/Portals/131827/images/btn_francais_blanc.gif';
		francais_on.src = '/Portals/131827/images/btn_francais_jaune.gif';
	
		function on(image) {
		      imagesrc = eval(image + '_on.src');
		      document[image].src = imagesrc;
		}
		
		function off(image) {
		      imagesrc = eval(image + "_off.src");
		      document[image].src = imagesrc;
		}
