/*
Script pour rollovers "new" de la page splash : toutes les images remplacées par l'arbre au survol de l'icone
*/

if (document.images) {

img10off = new Image();
img10off.src = "splash/tree2off.gif";
img10on = new Image();
img10on.src = "splash/tree2on.gif";
img10dwn = new Image();
img10dwn.src = "splash/tree2dwn.gif";

}
function imgNOn (imgName) {
if (document.images) {
document[imgName].src = eval(imgName + "on.src");
document["img9"].src = "splash/9new.jpg"; // Added line! pour remplacement image 9off.jpg tree
document["img2"].src = "splash/2new.jpg"; // Added line! pour remplacement image 2off.jpg tree
document["img3"].src = "splash/3new.jpg"; 
document["img8"].src = "splash/8new.jpg"; 
document["img1"].src = "splash/1new.jpg"; 
document["img4"].src = "splash/4new.jpg"; 
document["img7"].src = "splash/7new.jpg"; 
document["img6"].src = "splash/6new.jpg"; 
document["img5"].src = "splash/5newt.jpg"; 
}
}

function imgNOff (imgName) {
if (document.images) {
document[imgName].src = eval(imgName + "off.src");
document["img9"].src = "splash/9off.jpg"; // Added line! pour image 9off.jpg
document["img2"].src = "splash/2off.jpg";  // Added line! pour image 2off.jpg
document["img3"].src = "splash/3off.jpg"; 
document["img8"].src = "splash/8off.jpg"; 
document["img1"].src = "splash/1off.jpg"; 
document["img4"].src = "splash/4off.jpg"; 
document["img7"].src = "splash/7off.jpg"; 
document["img6"].src = "splash/6off.jpg"; 
document["img5"].src = "splash/5off.jpg"; 
}
}

function imgNDwn (imgName) {
if (document.images) {
document[imgName].src = eval(imgName + "dwn.src");
}
}
