
function overBouton(nom){
    //Récupération du bouton
     var bouton = document.getElementById(nom);
	 
	 bouton.style.background='black';		
	 bouton.style.cursor='pointer';	  		
	 /*
     //Partie commune
     bouton.style.background='black';
     bouton.style.color='black';

     Nom_Browser = navigator.appName;
     //Si Nestcape
     if ( Nom_Browser == "Netscape" ){
           bouton.style.MozOpacity='0.45';
     //SI IE
     }else{
           bouton.style.filter='alpha(opacity=45)';
     }*/
}

function downBouton(nom){
     //Récupération du bouton
     var bouton = document.getElementById(nom);
		
     //Partie commune
     bouton.style.color='white';
	 bouton.style.cursor='pointer';
     bouton.style.background='';

	/*
     Nom_Browser = navigator.appName;
     //Si Nestcape
     if ( Nom_Browser == "Netscape" ){
            bouton.style.MozOpacity='1';
     //SI IE
     }else{
           bouton.style.filter='alpha(opacity=100)';
     }*/
}

function clicMenu(page){
     window.location.href= page;
}