// JavaScript Document - images en rollover
<!--
var a
a= new Array();
a[0]=new Image;
a[0].src="img/menu/qui_sommes_nous_on.gif";
a[1]=new Image;
a[1].src="img/menu/qui_sommes_nous_off.gif";
a[2]=new Image;
a[2].src="img/menu/implatation_on.gif";
a[3]=new Image;
a[3].src="img/menu/implatation_off.gif";
a[4]=new Image;
a[4].src="img/menu/technologie_on.gif";
a[5]=new Image;
a[5].src="img/menu/technologie_off.gif";
a[6]=new Image;
a[6].src="img/menu/produits_on.gif";
a[7]=new Image;
a[7].src="img/menu/produits_off.gif";
a[8]=new Image;
a[8].src="img/menu/achats_on.gif";
a[9]=new Image;
a[9].src="img/menu/achats_off.gif";
a[10]=new Image;
a[10].src="img/menu/qualite_on.gif";
a[11]=new Image;
a[11].src="img/menu/qualite_off.gif";
a[12]=new Image;
a[12].src="img/menu/qui_sommes_nous_roll.gif";
a[13]=new Image;
a[13].src="img/menu/implatation_roll.gif";
a[14]=new Image;
a[14].src="img/menu/technologie_roll.gif";
a[15]=new Image;
a[15].src="img/menu/produits_roll.gif";
a[16]=new Image;
a[16].src="img/menu/achats_roll.gif";
a[17]=new Image;
a[17].src="img/menu/qualite_roll.gif";
function roll(img,nb) {
eval("img.src=a["+nb+"].src");
}
//-->