function makemenu()
{
	var MenuObj=(document.all ? document.all['menu'] : document.getElementById('menu'));
	MenuObj.innerHTML = "";
	var str;
	str = "<table bgcolor=2d4051 border='0' cellspacing='0' cellpadding='0' style= 'position:absolute' width=150>"
	str += "<tr height=1 bgcolor=c0c0c0><TD colspan=3></TD></tr>";
	str += "<tr height=22><td width=1 bgcolor=c0c0c0></td><TD onmouseover=mouseover(this,'Mission') onmouseout=mouseout(this) style='cursor:pointer;cursor:hand;' onClick=hidemenu('../../about/mission.asp') class='navlinkwhite'>Mission & Philosophy</TD><td width=1 bgcolor=c0c0c0></td></tr>";	
	str += "<tr height=1 bgcolor=c0c0c0><TD colspan=3></TD></tr>";
	str += "<tr height=25><td width=1 bgcolor=c0c0c0></td><TD onmouseover=mouseover(this,'Marketing-Partnership') onmouseout=mouseout(this) style='cursor:pointer;cursor:hand;' onClick=hidemenu('../../about/markpart.asp') class='navlinkwhite'>Marketing Partnership</TD><td width=1 bgcolor=c0c0c0></td></tr>";
	str += "<tr height=1 bgcolor=c0c0c0><TD colspan=3></TD></tr>";
	str += "<tr height=25><td width=1 bgcolor=c0c0c0></td><TD onmouseover=mouseover(this,'Finances') onmouseout=mouseout(this) style='cursor:pointer;cursor:hand;' onClick=hidemenu('../../about/finances.asp') class='navlinkwhite'>Finances</TD><td width=1 bgcolor=c0c0c0></td></tr>";
	str += "<tr height=1 bgcolor=c0c0c0><TD colspan=3></TD></tr>";
	str += "<tr height=25><td width=1 bgcolor=c0c0c0></td><TD onmouseover=mouseover(this,'Advantages') onmouseout=mouseout(this) style='cursor:pointer;cursor:hand;' onClick=hidemenu('../../about/advantages.asp') class='navlinkwhite'>Advantages</TD><td width=1 bgcolor=c0c0c0></td></tr>";
	str += "<tr height=1 bgcolor=c0c0c0><TD colspan=3></TD></tr>";
	str += "<tr height=25><td width=1 bgcolor=c0c0c0></td><TD onmouseover=mouseover(this,'Video') onmouseout=mouseout(this) style='cursor:pointer;cursor:hand;' onClick=hidemenu('../../about/video.asp') class='navlinkwhite'>Video</TD><td width=1 bgcolor=c0c0c0></td></tr>";
	str += "<tr height=1 bgcolor=c0c0c0><TD colspan=3></TD></tr>";
	str += "<tr height=25><td width=1 bgcolor=c0c0c0></td><TD onmouseover=mouseover(this,'News') onmouseout=mouseout(this) style='cursor:pointer;cursor:hand;' onClick=hidemenu('../../about/news.asp') class='navlinkwhite'>News</TD><td width=1 bgcolor=c0c0c0></td></tr>";
	str += "<tr height=1 bgcolor=c0c0c0><TD colspan=3></TD></tr>";
	str += "<tr height=25><td width=1 bgcolor=c0c0c0></td><TD onmouseover=mouseover(this,'Employment') onmouseout=mouseout(this) style='cursor:pointer;cursor:hand;' onClick=hidemenu('../../about/career.asp') class='navlinkwhite'>Employment</TD><td width=1 bgcolor=c0c0c0></td></tr>";
	str += "<tr height=1 bgcolor=c0c0c0><TD colspan=3></TD></tr></table>";
	MenuObj.innerHTML = str;
}

function hidemenu(url)
{
	window.location= url;
	var MenuObj=(document.all ? document.all['menu'] : document.getElementById('menu'));
	MenuObj.innerHTML = "";
}

function hyperlink(url)
{
	window.location = url
}

function mouseover(column,statustext)
{
	column.style.backgroundColor='#ff9933';
	window.status = statustext; 
	return true;
}

function mouseout(column)
{
	column.style.backgroundColor='#2d4051';
	window.status = ''; 
	return true;
}