shs = new Array ();
shs['tbl_htls'] = 0;
shs['tbl_galls'] = 0;

function selMenu(obj, sb_id)
{
  obj.style.backgroundColor = '#cc0';
  if (sb_id)
  {
    shs[sb_id] = 1;    
    setTimeout ("showT('"+sb_id+"')", "300");
    //document.getElementById(sb_id).style.display = 'block';
  }
}

function nselMenu(obj, sb_id)
{
  obj.style.backgroundColor = '#aa0';
  if (sb_id)
  {
    shs[sb_id] = 0;
    setTimeout ("hideT('"+sb_id+"')", "300");
    //document.getElementById(sb_id).style.display = 'none';
  }
}

function go(url)
{
  window.location = url;
}

function selMenuS(sb_id)
{
  shs[sb_id] = 1;    
  setTimeout ("showT('"+sb_id+"')", "300");
}

function nselMenuS(sb_id)
{
  shs[sb_id] = 0;
  setTimeout ("hideT('"+sb_id+"')", "300");
}

function showT(sb_id)
{
  document.getElementById('tbl_htls').style.display = 'none';
  document.getElementById('tbl_galls').style.display = 'none';

  document.getElementById(sb_id).style.display = 'block';
}

function hideT(sb_id)
{
  if (shs[sb_id] == 0)
  {
    document.getElementById(sb_id).style.display = 'none';
  }
}