	var listMenu = new FSMenu('listMenu', true, 'visibility', 'visible', 'hidden');
		
		// The parameters of the FSMenu object are:
		//  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.
		//
		// Next, here's some optional settings for delays and highlighting:
		//  * showDelay is the time (in milliseconds) to display a new child menu.
		//  * switchDelay is the time to switch from one child menu to another child menu.
		//    Set this higher and point at 2 neighbouring items to see what it does.
		//  * hideDelay is the time it takes for a menu to hide after mouseout.
		//  * cssLitClass is the CSS classname applied to parent items of active menus.
		//  * showOnClick will, suprisingly, set the menus to show on click. Pick one of 3 values:
		//    0 = all mouseover, 1 = first level click, sublevels mouseover, 2 = all click.
		
		//listMenu.showDelay = 0;
		listMenu.switchDelay = 50;
		//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('>'));
		 // 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)'));
		addEvent(window, 'load', new Function('getRef("listMenuRoot").className="menulist"'));

	

