/*
Script pour rollovers
*/

if (document.images) {

img1off = new Image();
img1off.src = "images/menu/f01of.gif";
img1on = new Image();
img1on.src = "images/menu/f01on.gif";

img2off = new Image();
img2off.src = "images/menu/f02of.gif";
img2on = new Image();
img2on.src = "images/menu/f02on.gif";

img3off = new Image();
img3off.src = "images/menu/f03of.gif";
img3on = new Image();
img3on.src = "images/menu/f03on.gif";

img4off = new Image();
img4off.src = "images/menu/f04of.gif";
img4on = new Image();
img4on.src = "images/menu/f04on.gif";

img5off = new Image();
img5off.src = "images/menu/f05of.gif";
img5on = new Image();
img5on.src = "images/menu/f05on.gif";

img6off = new Image();
img6off.src = "images/menu/f06of.gif";
img6on = new Image();
img6on.src = "images/menu/f06on.gif";

img10off = new Image();
img10off.src = "images/menu/f10of.gif";
img10on = new Image();
img10on.src = "images/menu/f10on.gif";

img11off = new Image();
img11off.src = "images/menu/f11of.gif";
img11on = new Image();
img11on.src = "images/menu/f11on.gif";

img21off = new Image();
img21off.src = "menuouti/o21of.gif";
img21on = new Image();
img21on.src = "menuouti/o21on.gif";

img22off = new Image();
img22off.src = "menuouti/o22of.gif";
img22on = new Image();
img22on.src = "menuouti/o22on.gif";

img23off = new Image();
img23off.src = "menuouti/o23of.gif";
img23on = new Image();
img23on.src = "menuouti/o23on.gif";

img24off = new Image();
img24off.src = "menuouti/o24of.gif";
img24on = new Image();
img24on.src = "menuouti/o24on.gif";

img25off = new Image();
img25off.src = "menuouti/o25of.gif";
img25on = new Image();
img25on.src = "menuouti/o25on.gif";

}
function imgOn (imgName) {
if (document.images) {
document[imgName].src = eval(imgName + "on.src");
}
}

function imgOff (imgName) {
if (document.images) {
document[imgName].src = eval(imgName + "off.src");
}
}