/*function startNavList(menuid, menuclass) {

if (document.all&&document.getElementById) 
{
	alert(menuid);
	navRoot = document.getElementById(menuid);
	for (i=0; i<navRoot.childNodes.length; i++) 
	{
	
		node = navRoot.childNodes[i];
		if (node.nodeName=="LI")
		{
			node.onmouseover=function() {
				this.className+=" "+menuclass;
				if(document.getElementById('titlespan'))
				{	
					//alert('here');
					var titlespan = document.getElementById('titlespan');
					titlespan.style.visibility = 'hidden';
				}//end if 
			  
			  }//end function
			  
			  node.onmouseout=function() {
				 this.className=this.className.replace(" "+menuclass, "");
				if(document.getElementById('titlespan'))
				{
					var titlespan = document.getElementById('titlespan');
					titlespan.style.visibility='visible';
				}//end if
			   }//end function
		   }
	  }
 }
}*/


// JavaScript Document - Salonlines Dropdown code
	function startNavList(menuid, menuclass) {
		if (document.all&&document.getElementById) {
			navRoot = document.getElementById(menuid);
			if (navRoot) {
				for (i=0; i<navRoot.childNodes.length; i++) {
					node = navRoot.childNodes[i];
					if (node) {
						if (node.nodeName=="LI") {
							node.onmouseover=function() {				
							this.className+=" "+menuclass;
							}
							node.onmouseout=function() {				
								this.className=this.className.replace(" "+menuclass, "");
							}
						}
					}
				}
			}
	 	}
	}

function startNavMenus()
{
	startNavList('navmenuvert','oververt');
}
