// Page créée par Victor Guillard le 20 juillet 2007
// Cette page contient toutes les fonctions JavaScript


// Préchargement des images
var bouton = new Array();
bouton [0] = new Image();
bouton [0].src = 'images/puce_menu_en_tete_2.gif';
bouton [1] = new Image();
bouton [1].src = 'images/fleche_titre_menu_2.gif';
bouton [2] = new Image();
bouton [2].src = 'images/nosclients2.gif';
bouton [2] = new Image();
bouton [2].src = 'images/nous2.gif';
bouton [2] = new Image();
bouton [2].src = 'images/orp2.gif';
bouton [2] = new Image();
bouton [2].src = 'images/parrains2.gif';
bouton [2] = new Image();
bouton [2].src = 'images/prodserv2.gif';
bouton [2] = new Image();
bouton [2].src = 'images/qualite2.gif';
bouton [2] = new Image();
bouton [2].src = 'images/recrutement2.gif';

// Script du menu déroulant

window.onload=montre;
function montre(id) {
var d = document.getElementById(id);
	for (var i = 1; i<=10; i++) {
		if (document.getElementById('smenu'+i)) {document.getElementById('smenu'+i).style.display='none';}
	}
if (d) {d.style.display='block';}
}

