<!--    
        var face = new Array();
		var fond = new Array();
		var fleche = new Array(); 
		var foncee = new Array(); 
		var foncee2 = new Array(); 
		var lumiere = new Array(); 
		var lumiere2 = new Array();
				
		with (document.body.style) 
		 { 
		  face[0] = '#FFFFFF';
		  fond[0] = '#FFFFFF'; 
		  fleche[0] = '#000000'; 
		  foncee[0] = '#FFFFFF'; 
		  foncee2[0] = '#FFFFFF'; 
		  lumiere[0] = '#FFFFFF'; 
		  lumiere2[0] = '#FFFFFF';
		 }
		 
		face[1] = '#A1C69F';
		fleche[1] = '#FFFFFF';
		fond[1] = '#BFD9BE';
		lumiere[1] = '#FFFFFF';
		lumiere2[1] = '#EDEDF9';
		foncee[1] = '#333333';
		foncee2[1] = '#A1C69F';
		
		function scrollBar(num)
		 {
		  with(document.body.style)
		  {
		  scrollbarFaceColor=face[num];
		  scrollbarTrackColor=fond[num];
		  scrollbarArrowColor=fleche[num];
		  scrollbarShadowColor=foncee[num];
		  scrollbarDarkShadowColor=foncee2[num];
		  scrollbar3dLightColor=lumiere2[num];
		  scrollbarHighlightColor=lumiere[num];
		  }
		 }
		
		function colorBar()
		{
         var w = document.body.clientWidth;
         var h = document.body.clientHeight;
         var x = event.clientX;
         var y = event.clientY;
         if(x>w)
		      { scrollBar(1); }
		 else { scrollBar(0); }
    	}
        if (document.all)
	    {
        scrollBar(0);
        document.onmousemove=colorBar;
	    }
//-->