<!--
var enab = '';
menu_hide();

function menu_hide()
{
  document.getElementById('mm1_sub').style.display = 'none';
  document.getElementById('mm2_sub').style.display = 'none';
  document.getElementById('mm3_sub').style.display = 'none';
  document.getElementById('mm4_sub').style.display = 'none';
  document.getElementById('mm5_sub').style.display = 'none';
}

function menu_over()
{
  document.getElementById('mm1').style.background = '#650a09';
  document.getElementById('mm2').style.background = '#650a09';
  document.getElementById('mm3').style.background = '#650a09';
  document.getElementById('mm4').style.background = '#650a09';
  document.getElementById('mm5').style.background = '#650a09';
}

function menu_sub(t)
{
  menu_over();
  menu_hide();
  enab = t.id;
  document.getElementById(t.id + '_sub').style.display = 'block';
  t.style.background = '#980f07';
  t.style.borderBottom = '1px solid #965b57';
}

function menu_on(t)
{
  if (enab != t.id)
  {
    t.style.background = '#980f07';
    document.getElementById('sm').style.background = '#980f07';
    if (enab == '')
    {
      t.style.borderBottom = '1px solid #980f07';
	}
  }
}

function menu_off(t)
{
  if (enab != t.id)
  {
    t.style.background = '#650a09';
    t.style.borderBottom = '1px solid #965b57';
    document.getElementById('sm').style.background = '#650a09';
  }
}
//-->
