BullFijo=true;
SubmenuAct='';
bu1='';
bu2='';
colormenu='';
function SubMenu(nombre, alto)
{
	if (SubmenuAct!='') document.getElementById(SubmenuAct).style.height='0px';	 
	document.getElementById(nombre).style.height=alto+'px';	
	SubmenuAct=nombre;
	document.getElementById(SubmenuAct).style.marginBottom='-27px';
}

function Encima(id, bull)
{
  if (bull==undefined) bull=true;	
  if (bu2=='') bu2='bullet4.png';
  document.getElementById(id).style.color='#0096A1';
  document.getElementById(id).style.borderBottomColor='#0096A1';
  if (bull) document.getElementById(id).style.listStyleImage= 'url('+bu2+')';
  document.getElementById('e'+id).style.color= '#0096A1';
}

function Fuera(id, bull)
{
  if (bull==undefined) bull=true;	
  if (colormenu=='') colormenu='#152226'
  if (bu1=='') bu1='bullet3.png';
  document.getElementById(id).style.color=colormenu;
  document.getElementById(id).style.borderBottomColor=colormenu;
  if (bull) document.getElementById(id).style.listStyleImage= 'url('+bu1+')';
  document.getElementById('e'+id).style.color= colormenu;
  if (MenuFijo!='')
  {
    Encima(MenuFijo);
  }
  if (SubMenuFijo!='')
  {
    Encima(SubMenuFijo);
  }
}