function displayNav( e, value, nav )
	{
		if( value == true )
		{
			// Display only 1 menu
			// Hide all others
			for( i=0 ; i < menuList.length ; i++ )
			{
				el = document.getElementById( menuList[i] );
				 if( menuList[i] == nav )
				 {
					el.style.display = 'block';
				 }
				 else
				 {
					el.style.display = 'none';
				 }
			}
		
		}
		else
		{
			/*if (!el.contains(e.toElement)) {
				// mouseout really went out of the DIV
			}*/
			el = document.getElementById( nav );
			el.style.display = 'none';
		}
	}