var blnSubMenuClicked = false;
var strMenuDivId = '';
var intMillisecondsToDelay = 500;
var intTimerID = null;

//////////////////////////////////////
function TopNavbarMouseOver(strMenuId)
{
  if (intTimerID != null)
  {
    clearTimeout(intTimerID);
    TopNavbarMouseOutTasks();
  }
  var objTD = document.getElementById('td' + strMenuId);
  var objDiv = document.getElementById('div' + strMenuId);

  objTD.style.backgroundColor = '#99ccff';
  objTD.style.color = '#2d2a62';
  objTD.style.cursor = 'pointer';
  objDiv.style.visibility = 'visible';
}

/////////////////////////////////////
function TopNavbarMouseOut(strMenuId)
{
  strMenuDivId = strMenuId;
  intTimerID = setTimeout('TopNavbarMouseOutTasks()', intMillisecondsToDelay);
}

/////////////////////////////////
function TopNavbarMouseOutTasks()
{
  var strMenuId = strMenuDivId;
  var objTD = document.getElementById('td' + strMenuId);
  var objDiv = document.getElementById('div' + strMenuId);

  objTD.style.backgroundColor = '#336699';
  objTD.style.color = '#ffffff';
  objTD.style.cursor = 'auto';
  objDiv.style.visibility = 'hidden';
}

/////////////////////////////////////////
function TopNavbarSubMouseOver(strMenuId)
{
  var objTD = document.getElementById('td' + strMenuId);

  objTD.style.backgroundColor = '#99ccff';
  objTD.style.color = '#2d2a62';
  objTD.style.cursor = 'pointer';
}

/////////////////////////////////////////
function TopNavbarSubMouseOut(strMenuId)
{
  var objTD = document.getElementById('td' + strMenuId);

  objTD.style.backgroundColor = '#336699';
  objTD.style.color = '#ffffff';
  objTD.style.cursor = 'auto';
}

