function displayMultiFlightMenu(node) {
	
	if (document.all && document.getElementsByTagName) {
		
		var navRoot = '';
		if (node == 'root') {

			MultiFlightMenuRoot = document.getElementsByTagName('ul');
			for (var i=0; i<MultiFlightMenuRoot.length; i++) {

				if (MultiFlightMenuRoot[i].className == 'MultiFlightMenu') 
					navRoot = MultiFlightMenuRoot[i];
			}
		}
		else {

			navRoot = node;
		}
		for (i=0; i<navRoot.childNodes.length; i++) {
			
			node = navRoot.childNodes[i];
			if (node.tagName == 'LI') {

				node.onmouseover = function() {
					
					this.className += ' over';
/*					if (node.className == 'top over') {

						a = this.firstChild;
						a.style.background = 'transparent url(top_bg_over.gif) no-repeat top left';
						a.style.color = '#ffffff';
					}
*/				}
				node.onmouseout = function() {
					
					this.className = this.className.replace(' over', '');
				}
			}
			
			if (node.childNodes.length>0) {

				for (var j=0; j<node.childNodes.length; j++) {

					if (node.childNodes[j].tagName == 'UL') {

						displayMultiFlightMenu(node.childNodes[j]);
					}
				}
			}
			else {
				
				return;
			}
		}
	}
}
