var listMenu = new FSMenu('listMenu', true, 'display', 'block', 'none');

listMenu.showDelay = 0; // time (in milliseconds) to display a new child menu
listMenu.switchDelay = 100; // time to switch from one child menu to another child menu
listMenu.hideDelay = 500; // time it takes for a menu to hide after mouseout (use negative # to disable hiding)
// listMenu.cssLitClass = 'highlighted'; // the CSS classname applied to parent items of active menus
// listMenu.showOnClick = 0; // set the menus to show on click ... 0 = all mouseover, 1 = first lvl click, sublvls mouseover, 2 = all click
// listMenu.hideOnClick = true; // hides all visible menus when one is clicked (defaults to true)
// listMenu.animInSpeed = 0.2; // Set between 0 and 1. Higher = faster. Setting both to 1 disables animation.
// listMenu.animOutSpeed = 0.2;
listMenu.animations[listMenu.animations.length] = FSMenu.animFade;
listMenu.animations[listMenu.animations.length] = FSMenu.animSwipeDown;
//listMenu.animations[listMenu.animations.length] = FSMenu.animClipDown;
var arrow = null;
/* if (document.createElement && document.documentElement) {
	arrow = document.createElement('span');
	arrow.appendChild(document.createTextNode('>'));
	// Feel free to 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)'));
