//Top Nav bar script v2.1- http://www.dynamicdrive.com/dynamicindex1/sm/index.htm

function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location, linktarget);

	menu = new Menu();
	menu.addItem("empty", "&nbsp;", "OMR Home Page",  null, null, 4);
	menu.addItem("home", "<img src='home.gif' border='0'>", "OMR Home Page",  "../", null, 3);
	menu.addItem("search", "<img src='search.gif' border='0'>", "Search",  "index.php3?name=search.php3", null, 3);
	menu.addItem("ourfirm", "Our Firm", "Our Firm",  null, null, 18);
	menu.addItem("descon", "Design Concepts", "Design Concepts",  null, null, 18);
	menu.addItem("ourwork", "Our Work", "Our Work",  null, null, 18);
	menu.addItem("news", "News", "News",  null, null, 18);
	menu.addItem("contact", "Contact", "Contact",  null, null, 18);

	menu.addSubItem("ourfirm", "Overview", "Overview",  "index.php3?name=ourfirm.htm&id=1", "_self");
	menu.addSubItem("ourfirm", "Philosophy", "Philosophy",  "index.php3?name=ourfirm.htm&id=2", "_self");
	menu.addSubItem("ourfirm", "Sustainability", "Sustainability",  "index.php3?name=ourfirm.htm&id=3", "_self");
	menu.addSubItem("ourfirm", "Services", "Services",  "index.php3?name=ourfirm.htm&id=4", "_self");
	menu.addSubItem("ourfirm", "Budget", "Budget",  "index.php3?name=ourfirm.htm&id=5", "_self");
	menu.addSubItem("ourfirm", "Process", "Process",  "index.php3?name=ourfirm.htm&id=6", "_self");
	menu.addSubItem("ourfirm", "People", "People",  "index.php3?name=ourfirm.htm&id=7", "_self");
	menu.addSubItem("ourfirm", "Office", "Office",  "index.php3?name=ourfirm.htm&id=8", "_self");
	menu.addSubItem("ourfirm", "Logo", "Logo",  "index.php3?name=logo.htm", "_self");
	menu.addSubItem("ourfirm", "", "",  "", "_blank");

	menu.addSubItem("descon", "Context", "Context",  "index.php3?name=descon.htm&id=1", "_self");
	menu.addSubItem("descon", "Indoor/Outdoor", "Indoors/Outdoors",  "index.php3?name=descon.htm&id=2", "_self");
	menu.addSubItem("descon", "Natural Light", "Natural Light",  "index.php3?name=descon.htm&id=3", "_self");
	menu.addSubItem("descon", "Function", "Function",  "index.php3?name=descon.htm&id=4", "_self");
	menu.addSubItem("descon", "Detail", "Detail",  "index.php3?name=descon.htm&id=5", "_self");
	menu.addSubItem("descon", "", "",  "", "_blank");


	menu.addSubItem("ourwork", "Portfolio", "Portfolio",  "index.php3?name=port.htm", "_self");
	menu.addSubItem("ourwork", "In Progress", "In Progress",  "index.php3?name=works.htm", "_self");
	menu.addSubItem("ourwork", "", "",  "", "_blank");

	menu.addSubItem("news", "What's New", "What's New",  "index.php3?name=whatsn.htm", "");
	<!-- menu.addSubItem("news", "Press Releases", "Press Releases",  "index.php3?name=pressrel.htm", ""); -->
	menu.addSubItem("news", "Articles", "Articles", "index.php3?name=articles.htm", "");
	menu.addSubItem("news", "", "",  "", "_blank");

	menu.addSubItem("contact", "Contact Us", "Contact Us",  "index.php3?name=contact.htm", "");
	menu.addSubItem("contact", "Visit Us", "Visit Us",  "index.php3?name=visit.htm", "");
	menu.addSubItem("contact", "Join our Team", "Join our Team",  "index.php3?name=joinourt.htm", "");
	menu.addSubItem("contact", "", "",  "", "_blank");

	menu.showMenu();
}