//Les fonctions précharger les images

var details1On = new Image(); details1On.src = "../images/details1On.jpg";
var details1Off = new Image(); details1Off.src = "../images/details1Off.jpg";

var details2On = new Image(); details2On.src = "../images/details2On.jpg";
var details2Off = new Image(); details2Off.src = "../images/details2Off.jpg";





//Les fonctions Rollover details
function rolloverDetails1()
{
	window.document.getElementById("details1").src = details1On.src;
}

function rolloutDetails1()
{
	window.document.getElementById("details1").src = details1Off.src;
}

//-----------------------------------------------------

function rolloverDetails2()
{
	window.document.getElementById("details2").src = details2On.src;
}

function rolloutDetails2()
{
	window.document.getElementById("details2").src = details2Off.src;
}


//-----------------------------------------------------
//fonction alerte disponible bientôt
function MessageDisponibleBientot() {
       window.alert("Disponible bientôt...")
   }