//<script>		
		var menuActual=""
			
			var iluminado = ""
			
			function sacamenu(num)
			{
				if(menuActual != "") quitaMenu()
				document.getElementById("menu"+num).style.display="block"
				document.getElementById("Cmenu"+num).style.backgroundColor="#0099CC"
				menuActual="menu"+num
			}
		
			function quitaMenu()
			{
				if(menuActual != "") 
				{
					
document.getElementById(menuActual).style.display="none"
					document.getElementById("C"+menuActual).style.backgroundColor="#EEEEFF"
				}	
			}
			
			function ilumina(elemento)
			{
				if(iluminado != "" )
				{ 

document.getElementById(iluminado).style.color="#4C7B9B"
					document.getElementById(iluminado).style.backgroundColor="#F2F2F2"
				}
				document.getElementById(elemento).style.color="white"
				document.getElementById(elemento).style.backgroundColor="#99B0BF"
				iluminado=elemento
			}
			
			function desilumina(elemento)
			{
				document.getElementById(elemento).style.color="#4C7B9B"
				document.getElementById(elemento).style.backgroundColor="#F2F2F2"
			}
			
			function iluminaOpcion(num)
			{
				document.getElementById("op"+num).style.color="#004F75"
				document.getElementById("op"+num+"bis").style.color="#3B3B3B"
			
			}
			
			function desiluminaOpcion(num)
			{
				document.getElementById("op"+num).style.color="#86ACE9"
				document.getElementById("op"+num+"bis").style.color="#666666"
			}
			
			function iluminaOpcionT(num)
			{
				document.getElementById("t"+num).style.color="black"
			
			}
			
			function desiluminaOpcionT(num)
			{
				document.getElementById("t"+num).style.color="#666666"
			}