/*
-------------------------------------------------------------------------
-- 
-- LHS Pop Up Menu
-- 
-------------------------------------------------------------------------
*/
startList = function() {
	if (document.all && document.getElementById) {
		/////////////////////////////////////////////////////////
		// menu 1
		navRoot = document.getElementById("nav");
		for (i=0; i<navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i];
			if (node.nodeName=="LI") {
				node.onmouseover=function() {
					this.className+=" over";
  				}
	  			node.onmouseout=function() {
					this.className=this.className.replace(" over", "");
				} 
			} // if
		} // for
		
		/////////////////////////////////////////////////////////
		// menu 2
		navRooti = document.getElementById("nav2");
		for (i=0; i<navRooti.childNodes.length; i++) {
			node = navRooti.childNodes[i];
			if (node.nodeName=="LI") {
				node.onmouseover=function() {
					this.className+=" over";
  				}
	  			node.onmouseout=function() {
					this.className=this.className.replace(" over", "");
				} 
			} // if
		} // for

		/////////////////////////////////////////////////////////
		// menu 3
		
		navRootii = document.getElementById("nav3");		
		for (i=0; i<navRootii.childNodes.length; i++) {
			node = navRootii.childNodes[i];
			if (node.nodeName=="LI") {
				node.onmouseover=function() {
					this.className+=" over";
  				}
	  			node.onmouseout=function() {
					this.className=this.className.replace(" over", "");
				} 
			} // if
		} // for

		////////////////////////////////////////////////////////////////////
		// For Sub Menus
		// Layer 2
		////////////////////////////////////////////////////////////////////
		navRootiii = document.getElementById("inner_nav1");		
		for (i=0; i<navRootiii.childNodes.length; i++) {
			node = navRootiii.childNodes[i];
			if (node.nodeName=="LI") {				
				node.onmouseover=function() {
					this.className+=" over";
  				}
	  			node.onmouseout=function() {
					this.className=this.className.replace(" over", "");
				} 
			} // if
		} // for
		
		

	} // if
} // function
window.onload=startList;