﻿function showMenu(id) {
    var d = document.getElementById('smenu'+id);
	var titre = document.getElementById('menu'+id);
	 
	if(navigator.appName == 'Microsoft Internet Explorer'){
        if(!(document.getElementById('menu'+id)).contains(window.event.fromElement)){
            if (d) {
                d.style.display='block';
                
                var sNavigator = navigator.appVersion;
	            var iPositionVersion = sNavigator.indexOf('MSIE ');
	            var iIEVersion = sNavigator.substr(iPositionVersion+5,1);
				
				          
            }
			titre.style.backgroundImage='url(http://www.sagesse.fr/img/skin/barre_selection.jpg)';
        }
	}
	else{	
        if (d) {
            d.style.display='block';
        }
	} 
}

function hideMenu(id) {
    var d = document.getElementById('smenu'+id);
	var titre = document.getElementById('menu'+id);
   
	if(navigator.appName == 'Microsoft Internet Explorer'){
	    if(!(document.getElementById('menu'+id)).contains(window.event.toElement)){
	        if (d) {
	            d.style.display='none';
	             
	            var sNavigator = navigator.appVersion;
	            var iPositionVersion = sNavigator.indexOf('MSIE ');
	            var iIEVersion = sNavigator.substr(iPositionVersion+5,1);
	            
            } 
			titre.style.backgroundImage='url(http://www.sagesse.fr/img/skin/barre_selection3.jpg)';
        }
		
	}
	else{
        if (d) {
            d.style.display='none';
        }
	}	
}