//Les fonctions précharger les images

var boutonAccueilOn = new Image(); boutonAccueilOn.src = "../images/boutonAccueilOn.jpg";
var boutonAccueilOff = new Image(); boutonAccueilOff.src = "../images/boutonAccueilOff.jpg";

var boutonServicesOn = new Image(); boutonServicesOn.src = "../images/boutonServicesOn.jpg";
var boutonServicesOff = new Image(); boutonServicesOff.src = "../images/boutonServicesOff.jpg";

var boutonEvenementsOn = new Image(); boutonEvenementsOn.src = "../images/boutonEvenementsOn.jpg";
var boutonEvenementsOff = new Image(); boutonEvenementsOff.src = "../images/boutonEvenementsOff.jpg";

var boutonForumOn = new Image(); boutonForumOn.src = "../images/boutonForumOn.jpg";
var boutonForumOff = new Image(); boutonForumOff.src = "../images/boutonForumOff.jpg";

var boutonBoutiqueOn = new Image(); boutonBoutiqueOn.src = "../images/boutonBoutiqueOn.jpg";
var boutonBoutiqueOff = new Image(); boutonBoutiqueOff.src = "../images/boutonBoutiqueOff.jpg";

var boutonContactOn = new Image(); boutonContactOn.src = "../images/boutonContactOn.jpg";
var boutonContactOff = new Image(); boutonContactOff.src = "../images/boutonContactOff.jpg";







//Les fonctions Rollover menu
function rolloverAccueil()
{
	window.document.getElementById("accueil").src = boutonAccueilOn.src;
}

function rolloutAccueil()
{
	window.document.getElementById("accueil").src = boutonAccueilOff.src;
}

//-----------------------------------------------------
function rolloverServices()
{
	window.document.getElementById("services").src = boutonServicesOn.src;
}

function rolloutServices()
{
	window.document.getElementById("services").src = boutonServicesOff.src;
}

//-----------------------------------------------------
function rolloverEvenements()
{
	window.document.getElementById("evenements").src = boutonEvenementsOn.src;
}

function rolloutEvenements()
{
	window.document.getElementById("evenements").src = boutonEvenementsOff.src;
}

//-----------------------------------------------------
function rolloverForum()
{
	window.document.getElementById("forum").src = boutonForumOn.src;
}

function rolloutForum()
{
	window.document.getElementById("forum").src = boutonForumOff.src;
}

//-----------------------------------------------------
function rolloverBoutique()
{
	window.document.getElementById("boutique").src = boutonBoutiqueOn.src;
}

function rolloutBoutique()
{
	window.document.getElementById("boutique").src = boutonBoutiqueOff.src;
}

//-----------------------------------------------------
function rolloverContact()
{
	window.document.getElementById("contact").src = boutonContactOn.src;
}

function rolloutContact()
{
	window.document.getElementById("contact").src = boutonContactOff.src;
}



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

//-----------------------------------------------------
// Fonction retour arrière

function retourBack()
	{window.history.back();}