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

	menu = new Menu();
	menu.addItem("contactid", "contact", "get in touch",  null, null);
	menu.addItem("attractionsid", "coming attractions", "coming soon to a theater near you",  null, null);
	menu.addItem("productionid", "in preparation", "what we're working on",  null, null);
	menu.addItem("staffid", "staff", "the nameless, faceless minions",  null, null);
	menu.addItem("companyid", "company", "what we're about",  null, null);
	menu.addItem("homeid", "home", "back to front",  null, null);

	menu.addSubItem("contactid", "email", "by email",  "mailto:joncope@joncope.net");
	menu.addSubItem("contactid", "production services", "get more information",  "form.html");
	
	menu.addSubItem("attractionsid", "coming soon", "coming soon",  "soon.html");
	 

	menu.addSubItem("productionid", "Uh Oh! Hawaii", "Uh Oh! Hawaii",  "http://www.uhohthemovie.com/hawaii/");
	  

	menu.addSubItem("staffid", "the staff", "the staff",  "staff.html");	
	
	menu.addSubItem("companyid", "what we do", "what we do",  "companydo.html");
	menu.addSubItem("companyid", "controlled ecosystems", "controlled ecosystems", "http://www.uhohthemovie.com/controlledecosystems/index.html");
	menu.addSubItem("companyid", "real estate & loans", "real estate & loans", "http://www.joncope.net/");
	

menu.addSubItem("homeid", "home", "back!",  "index.html");

	menu.showMenu();
}

