//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("home", "&nbsp;home", "home",  "home.html", null);
	menu.addItem("oa", "&nbsp;&nbsp;&nbsp;our apartments", "our apartments",  "our_apts.html", null);
	menu.addItem("oc", "&nbsp;our commitment", "our commitment", "our_commit.html",null);
	menu.addItem("careers", "&nbsp;careers", "careers",  "careers.html", null);
	menu.addItem("au", "&nbsp;&nbsp;&nbsp;about us", "about us",  "about_us.html", null);
	menu.addItem("cu", "&nbsp;&nbsp;contact us", "contact us",  "contact_us.html", null);

	menu.showMenu();
}