function menuSet()
{
	var thisPage, theElement;
	var sPath = window.location.pathname;
	var sPage = sPath.substring(sPath.lastIndexOf('/') + 1);
	//var sPage = sPath.substring(sPath.lastIndexOf('\\') + 1);
	
	//alert(sPath + " - " + sPage);

	switch (sPage) 
	{
	case "default.htm":
	  break
	
	case "about-selection.html": 
	case "about-supervision.html": 
	case "about-introduction.html": 
	case "about4.html": 
	  theElement = document.getElementById("aboutclass"); 
	  toggleMenu(theElement)
	  break
	
	case "forschools.html": 
	case "forschools-testimonials.html": 
	  theElement = document.getElementById("schoolclass"); 
	  toggleMenu(theElement)
	  break
	
	case "forparents.html": 
	case "forparents-samoan.html": 
	case "forparents-tongan.html":
	  theElement = document.getElementById("parentsclass");
	  toggleMenu(theElement)
	  break
	
	case "mentorinfo.html": 
	case "mentorinfo-guidelines.html": 
	  theElement = document.getElementById("mentorclass");
	  toggleMenu(theElement)
	  break
	
	}

}