var listMenu = new FSMenu('listMenu', true, 'visibility', 'visible', 'hidden');

listMenu.showDelay = 125;
listMenu.switchDelay = 250;
listMenu.hideDelay = 1000;
listMenu.cssLitClass = 'highlighted';
//listMenu.showOnClick = 1;

var arrow = null;
if (document.createElement && document.documentElement)
{
 arrow = document.createElement('span');
 arrow.appendChild(document.createTextNode('>'));
 arrow.className = 'subind';
}

addEvent(window, 'load', new Function('listMenu.activateMenu("listMenuRoot", arrow)'));
