/*
Script pour rollovers de la page splash
*/

if (document.images) {

img1off = new Image();
img1off.src = "splash/1off.jpg";
img1on = new Image();
img1on.src = "splash/1on.gif";
img1dwn = new Image();
img1dwn.src = "splash/1dw.gif";

img2off = new Image();
img2off.src = "splash/2off.jpg";
img2on = new Image();
img2on.src = "splash/2on.gif";
img2dwn = new Image();
img2dwn.src = "splash/2dw.gif";

img3off = new Image();
img3off.src = "splash/3off.jpg";
img3on = new Image();
img3on.src = "splash/3on.gif";
img3dwn = new Image();
img3dwn.src = "splash/3dw.gif";

img4off = new Image();
img4off.src = "splash/4off.jpg";
img4on = new Image();
img4on.src = "splash/4on.gif";
img4dwn = new Image();
img4dwn.src = "splash/4dw.gif";

img5off = new Image();
img5off.src = "splash/5off.jpg";
img5on = new Image();
img5on.src = "splash/5on.gif";
img5dwn = new Image();
img5dwn.src = "splash/5dw.gif";

img6off = new Image();
img6off.src = "splash/6off.jpg";
img6on = new Image();
img6on.src = "splash/6on.gif";
img6dwn = new Image();
img6dwn.src = "splash/6dw.gif";

img7off = new Image();
img7off.src = "splash/7off.jpg";
img7on = new Image();
img7on.src = "splash/7on.gif";
img7dwn = new Image();
img7dwn.src = "splash/7dw.gif";

img8off = new Image();
img8off.src = "splash/8off.jpg";
img8on = new Image();
img8on.src = "splash/8on.gif";
img8dwn = new Image();
img8dwn.src = "splash/8dw.gif";

img9off = new Image();
img9off.src = "splash/9off.jpg";
img9on = new Image();
img9on.src = "splash/9on.gif";
img9dwn = new Image();
img9dwn.src = "splash/9dw.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");
}
}

function imgDwn (imgName) {
if (document.images) {
document[imgName].src = eval(imgName + "dwn.src");
}
}
