var listMenu = new FSMenu('listMenu', true, 'visibility', 'visible', 'hidden');

listMenu.showDelay = 150;
listMenu.switchDelay = 5;
listMenu.hideDelay = 1000;
listMenu.cssLitClass = 'highlighted';
listMenu.showOnClick = 0;

var arrow = null;

if (document.createElement && document.documentElement) {
	arrow = document.createElement('img');
	arrow.src = '/templates/arrow.gif';
	arrow.width = 8;
	arrow.height = 16;
	arrow.style.borderWidth = '0';
	arrow.className = 'subind';
}

addEvent(window, 'load', new Function('listMenu.activateMenu("listMenuRoot", arrow)'));

