// JavaScript Document
<!-- 

// ************** ACCUEIL **************

function on_accueil() 
{ 
document.getElementById("img_1").src = "images/menu/roll_menu_accueil.jpg"; 
} 
function off_accueil() 
{ 
document.getElementById("img_1").src = "images/menu/menu_accueil.jpg"; 
} 


// *************** SERVICES *************

function on_services() 
{ 
document.getElementById("img_2").src = "images/menu/roll_menu_services.jpg"; 
} 
function off_services() 
{ 
document.getElementById("img_2").src = "images/menu/menu_services.jpg"; 
} 


// *************** REALISATIONS *************

function on_realisations() 
{ 
document.getElementById("img_3").src = "images/menu/roll_menu_realisations.jpg"; 
} 
function off_realisations() 
{ 
document.getElementById("img_3").src = "images/menu/menu_realisations.jpg"; 
} 


// *************** PRODUITS *************

function on_produits() 
{ 
document.getElementById("img_4").src = "images/menu/roll_menu_produits.jpg"; 
} 
function off_produits() 
{ 
document.getElementById("img_4").src = "images/menu/menu_produits.jpg"; 
} 


// *************** CONSEILS *************

function on_conseils() 
{ 
document.getElementById("img_5").src = "images/menu/roll_menu_conseils.jpg"; 
} 
function off_conseils() 
{ 
document.getElementById("img_5").src = "images/menu/menu_conseils.jpg"; 
} 


// *************** CONTACT *************

function on_contact() 
{ 
document.getElementById("img_6").src = "images/menu/roll_menu_contact.jpg"; 
} 
function off_contact() 
{ 
document.getElementById("img_6").src = "images/menu/menu_contact.jpg"; 
} 

--> 
