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