// JavaScript : preload des imases en rollover

<!--
var a
a= new Array();
a[0]=new Image;
a[0].src="img/range_on.gif";
a[1]=new Image;
a[1].src="img/range_off.gif";
a[2]=new Image;
a[2].src="img/design_on.gif";
a[3]=new Image;
a[3].src="img/design_off.gif";
a[4]=new Image;
a[4].src="img/materials_on.gif";
a[5]=new Image;
a[5].src="img/materials_off.gif";
a[6]=new Image;
a[6].src="img/coul_on.gif";
a[7]=new Image;
a[7].src="img/coul_off.gif";
a[8]=new Image;
a[8].src="img/printOn.gif";
a[9]=new Image;
a[9].src="img/print.gif";
function roll(img,nb) {
eval("img.src=a["+nb+"].src");
}
//-->
