var menu = new FSMenu('menu', true, 'visibility', 'visible', 'hidden');
					
menu.showDelay = 0;
menu.switchDelay = 125;
menu.hideDelay = 0;
menu.cssLitClass = 'highlighted';
//menu.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('menu.activateMenu("menu", arrow)'));
addEvent(window, 'load', new Function('menu.activateMenu("menu")'));
//addEvent(window, 'load', new Function('pre()'));
