/*
Script pour rollovers "new" de la page splash : toutes les images remplacées par photos biologist poet funeral director au survol de l'icone
*/

if (document.images) {

img12off = new Image();
img12off.src = "splash/bpfdoff.gif";
img12on = new Image();
img12on.src = "splash/bpfdon.gif";
img12dwn = new Image();
img12dwn.src = "splash/bpfddwn.gif";


}
function imgPOn (imgName) {
if (document.images) {
document[imgName].src = eval(imgName + "on.src");
document["img9"].src = "splash/9new3.jpg"; // Added line! pour remplacement image 9off.jpg tree
document["img2"].src = "splash/2new3.jpg"; // Added line! pour remplacement image 2off.jpg tree
document["img3"].src = "splash/3new3.jpg"; 
document["img8"].src = "splash/8new3.jpg"; 
document["img1"].src = "splash/1new3.jpg"; 
document["img4"].src = "splash/4new3.jpg"; 
document["img7"].src = "splash/7new3.jpg"; 
document["img6"].src = "splash/6new3.jpg"; 
document["img5"].src = "splash/5new3.jpg"; 
}
}

function imgPOff (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 imgPDwn (imgName) {
if (document.images) {
document[imgName].src = eval(imgName + "dwn.src");
}
}

