function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location, linktarget);

	menu = new Menu();
	menu.addItem("homeid", "Home", "Home", "http://www.justsidingandwindows.com/index.htm", null);
	menu.addItem("aboutid", "About Us", "About Us", "http://www.justsidingandwindows.com/about.htm", null);
	menu.addItem("galleryid", "Photo Gallery", "Photo Gallery",  "http://www.justsidingandwindows.com/gallery.htm", null);
	//menu.addItem("referencesid", "References", "References",  "http://www.justsidingandwindows.com/index.htm", null);

	//menu.addSubItem("homeid", "Home", "Home",  "http://www.justsidingandwindows.com/index.htm", "");

	menu.showMenu();
}
