/*
Script pour rollovers "new" de la page splash : toutes les images remplacées par la photo de Harvey (Road Show)au survol de l'icone
*/

if (document.images) {

img15off = new Image();
img15off.src = "splash/harvoff.gif";
img15on = new Image();
img15on.src = "splash/harvon.gif";
img15dwn = new Image();
img15dwn.src = "splash/harvdwn.gif";


}
function imgTOn (imgName) {
if (document.images) {
document[imgName].src = eval(imgName + "on.src");
document["img9"].src = "splash/9new4.jpg"; // Added line! pour remplacement image 9off.jpg sammy
document["img2"].src = "splash/2new4.jpg"; // Added line! pour remplacement image 2off.jpg sammy
document["img3"].src = "splash/3new4.jpg"; 
document["img8"].src = "splash/8new4.jpg"; 
document["img1"].src = "splash/1new4.jpg"; 
document["img4"].src = "splash/4new4.jpg"; 
document["img7"].src = "splash/7new4.jpg"; 
document["img6"].src = "splash/6new4.jpg"; 
document["img5"].src = "splash/5new4.jpg"; 
}
}

function imgTOff (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 imgTDwn (imgName) {
if (document.images) {
document[imgName].src = eval(imgName + "dwn.src");
}
}

