window.scrolled  = false;
window.menutimer = false;
/*
window.onscroll = function ()
{
   if (window.scrolled != true && document.getElementById('e-table-bottom'))
   {
      document.getElementById('e-table-bottom').style.height='129px';
      window.scrolled = true;
   }
}

function adjBottom()
{
   if (window.screen.height > 768)
   {
      document.getElementById('e-table-bottom').style.height='10%';
   }
   if (window.screen.height > 864)
   {
      document.getElementById('e-table-bottom').style.height='129px';
   }
}
*/

function showSubmenu(obj)
{
   clearTimeout(window.menutimer);

   document.getElementById('submenu').style.top = obj.offsetTop + obj.offsetParent.offsetTop + 'px';
   document.getElementById('submenu').style.left = obj.offsetLeft + obj.offsetParent.offsetLeft + 317 + 'px';
   document.getElementById('submenu').style.visibility = 'visible';

   before = '<img src="./gfx/c-submenutop.gif" style="margin-bottom: 0px; border-bottom: 1px solid #f4f5f9;" alt="" />';
   after  = '<img src="./gfx/c-submenubottom.gif" alt="" />';
   document.getElementById('submenu-items').innerHTML = before + document.getElementById(obj.id + 's').innerHTML + after;
}

function hideSubmenu()
{
   window.menutimer = setTimeout("document.getElementById('submenu').style.visibility = 'hidden';", 500);
}

function maintainSubmenu()
{
   clearTimeout(window.menutimer);
}

