function menu(elmnt)
{
	var aboutlinks = "<br /><a href=\"overview.php\" class=\"button-link-text-sm\" onmouseover=\"this.style.color='#ffdd00';\" onmouseout=\"this.style.color='#ffffff';\">- Overview</a><br /><a href=\"staff.php\" class=\"button-link-text-sm\" onmouseover=\"this.style.color='#ffdd00';\" onmouseout=\"this.style.color='#ffffff';\">- Staff</a>";/*<br /><a href=\"mission.php\" class=\"button-link-text-sm\" onmouseover=\"this.style.color='#ffdd00';\" onmouseout=\"this.style.color='#ffffff';\">- Mission</a>";*/
	
	var servicelinks = "<br /><a href=\"facility.php\" class=\"button-link-text-sm\" onmouseover=\"this.style.color='#ffdd00';\" onmouseout=\"this.style.color='#ffffff';\">- Facilities</a><br /><a href=\"training.php\" class=\"button-link-text-sm\" onmouseover=\"this.style.color='#ffdd00';\" onmouseout=\"this.style.color='#ffffff';\">- Counseling &amp; Training</a>";
	
	var businesslinks = "<br /><a href=\"businesses.php?type=current\" class=\"button-link-text-sm\" onmouseover=\"this.style.color='#ffdd00';\" onmouseout=\"this.style.color='#ffffff';\">- Current</a><br /><a href=\"businesses.php?type=graduate\" class=\"button-link-text-sm\" onmouseover=\"this.style.color='#ffdd00';\" onmouseout=\"this.style.color='#ffffff';\">- Graduated</a>";
	
	var txt = document.getElementById(elmnt).innerHTML;
	
	if (elmnt == "about")
	{	
		if (txt == "")
		{
			document.getElementById(elmnt).innerHTML=aboutlinks;
		}
		else
		{
			document.getElementById(elmnt).innerHTML="";
		}
	}
	else if (elmnt == "services")
	{
		if (txt == "")
		{
			document.getElementById(elmnt).innerHTML=servicelinks;
		}
		else
		{
			document.getElementById(elmnt).innerHTML="";
		}
	}
	else if (elmnt == "business")
	{
		if (txt == "")
		{
			document.getElementById(elmnt).innerHTML=businesslinks;
		}
		else
		{
			document.getElementById(elmnt).innerHTML="";
		}
	}
	else if (elmnt == "news")
	{
		if (txt == "")
		{
			document.getElementById(elmnt).innerHTML=newslinks;
		}
		else
		{
			document.getElementById(elmnt).innerHTML="";
		}
	}
}