sfHover = function() {
	var food = document.getElementById("food");
	var more = document.getElementById("more");
	
	//li-s
		food.onmouseover=function() {
					document.getElementById("food_sub").style.display="block";
					var nm=getName();
					if(nm=="wine.php" || nm=="bar.php" )
					{
					
					}else{
					food.onmouseout=function() {					
						document.getElementById("food_sub").style.display="none";
					}
				}
		}
	
		
		more.onmouseover=function() {
			document.getElementById("more_sub").style.display="block";
			var nm=getName();
			if(nm=="career.php" || nm=="directions.php" || nm=="upcoming.php" || nm=="team.php")
			{
			
			}else{
				more.onmouseout=function() 
				{		
					document.getElementById("more_sub").style.display="none";
				}
			}
		}
		
	
}


function getName()
{
	var path=window.location.pathname;
		 var name=path.substring(path.lastIndexOf('/')+1);
		 return name;
}

if (window.attachEvent) window.attachEvent("onload", sfHover);

