function initMenu(){
var tabId = new Array("btn-accueil","btn-entreprise","btn-pro","btn-qualite","btn-contact","btn-doc","btn-plan","btn-english");

	for(i=0; i<8; i++) {

		var btn = document.getElementById(tabId[i]);
			btn.onmouseover = function(){ this.style.backgroundColor = '#ba0e3d';  };
			btn.onmouseout = function(){ this.style.backgroundColor = '#660f25'; };
			}
			
			
			
			
	/*--- Pour les hover avec différente images (img - haut et bas) ---*/
		var btn_04 = document.getElementById("btn-opt");
		
		if (btn_04.className != 'menu_gauche-04-on' ) {
			btn_04.onmouseover = function() { this.className = 'menu_gauche-04-on'; };
			btn_04.onmouseout = function() { this.className = 'menu_gauche-04'; };
		}
		
			var btn_03 = document.getElementById("btn-abris");
			
		if (btn_03.className != 'menu_gauche-on-02' ) {
			btn_03.onmouseover = function() { this.className = 'menu_gauche-on-02'; };
			btn_03.onmouseout = function() { this.className = 'menu_gauche-02'; };
		}
	}
	



function initMenu_02(){
var tabId_02 = new Array("btn-quartz","btn-club1000","btn-club1500","btn-club2000","btn-club1515","btn-club2150","btn-club2200");

	for(a=0; a<7; a++) {

		var btn_02 = document.getElementById(tabId_02[a]);

	if (btn_02.className != 'menu_gauche-on' ) { 
			btn_02.onmouseover = function(){this.className = 'menu_gauche-on';};
			btn_02.onmouseout = function(){	this.className = 'menu_gauche-01';};
			}
		}	
	}
