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

// parameters:
//  1) Its own name in quotes.
//  2) Whether this is a nested list menu or not (in this case, true means yes).
//  3) The CSS property name to change when menus are shown and hidden.
//  4) The visible value of that CSS property.
//  5) The hidden value of that CSS property.

//listMenu.showDelay = 0;
//listMenu.switchDelay = 125;
//listMenu.hideDelay = 500;
listMenu.cssLitClass = 'highlighted';
//listMenu.showOnClick = 1;

var arrow = null;
if (document.createElement && document.documentElement) {
	arrow = document.createElement('span');
	arrow.appendChild(document.createTextNode('>'));
	//replace the above two lines with these for a small arrow image...
	//arrow = document.createElement('img');
	//arrow.src = 'arrow.gif';
	//arrow.style.borderWidth = '0';
	arrow.className = 'subind';
}

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