
function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location, linktarget);

	menu = new Menu();
	menu.addItem("homeid", "Home", "Home",  null, null);
	menu.addItem("aboutusid", "About Us", "About Us",  null, null);
	menu.addItem("storeid", "Online Store", "Online Store",  null, null);
	menu.addItem("galleryid", "Galleries", "Galleries",  null, null);
	menu.addItem("servicesid", "Services", "Services",  null, null);
	menu.addItem("specialsid", "Specials", "Specials",  null, null);
	
	menu.addSubItem("homeid", "Return to Homepage", "Return to Homepage",  "https://www.fineartsociety.org/", "_parent");
	
	menu.addSubItem("aboutusid", "All About Us", "All About Us",  "https://www.fineartsociety.org/AboutUs.htm", "_self");
	menu.addSubItem("aboutusid", "Event Calendar", "Event Calendar",  "https://www.fineartsociety.org/Calendar/default.asp", "_self");
	menu.addSubItem("aboutusid", "Memberships", "Memberships",  "https://www.fineartsociety.org/Memberships.htm", "_self");
	menu.addSubItem("aboutusid", "Contact Us", "Contact Us",  "https://www.fineartsociety.org/Contact.htm", "_self");
			
	menu.addSubItem("storeid", "Our Store", "Our Store",  "https://www.fineartsociety.org/shop/Index.htm", "_self");
	menu.addSubItem("storeid", "Paintings", "Paintings",  "https://www.fineartsociety.org/Paintings.htm", "_self");
	menu.addSubItem("storeid", "Photos", "Photos",  "https://www.fineartsociety.org/Photos.htm", "_self");
	menu.addSubItem("storeid", "Portraits", "Portraits",  "https://www.fineartsociety.org/Portraits.htm", "_self");
	menu.addSubItem("storeid", "Etchings", "Etchings",  "https://www.fineartsociety.org/Etchings.htm", "_self");
	menu.addSubItem("storeid", "Note Cards", "Note Cards",  "https://www.fineartsociety.org/Cards.htm", "_self");
	menu.addSubItem("storeid", "E-Cards", "E-Cards",  "https://www.fineartsociety.org/gcards/index.php", "_parent");
	menu.addSubItem("storeid", "View Cart", "Shopping Cart",  "https://www.fineartsociety.org/shop/showcart.asp", "_self");
	menu.addSubItem("storeid", "Admin Area", "Admin Area",  "https://www.fineartsociety.org/admin/", "_blank");
		
	menu.addSubItem("galleryid", "Galleries", "Galleries",  "https://www.fineartsociety.org/Gallery/", "_self");
		
	menu.addSubItem("servicesid", "Courses", "Courses",  "https://www.fineartsociety.org/Courses.htm", "_self");
	menu.addSubItem("servicesid", "Workshops", "Workshops",  "https://www.fineartsociety.org/Workshops.htm", "_self");
	menu.addSubItem("servicesid", "Portraiture", "Portraiture",  "https://www.fineartsociety.org/Portraiture.htm", "_self");
	menu.addSubItem("servicesid", "Restorations", "Restorations",  "https://www.fineartsociety.org/Restorations.htm", "_self");
	menu.addSubItem("servicesid", "On-Site Photography", "On-Site Photography",  "https://www.fineartsociety.org/Photography.htm", "_self");
	
	menu.addSubItem("specialsid", "Monthly", "Painting of the Month",  "https://www.fineartsociety.org/Monthly.htm", "_self");
	menu.addSubItem("specialsid", "Studio", "Our Studio",  "https://www.fineartsociety.org/Studio.htm", "_self");
	menu.addSubItem("specialsid", "Artists", "Fellow Artists",  "https://www.fineartsociety.org/Artists.htm", "_self");
	menu.addSubItem("specialsid", "Web Design", "Web Design",  "http://webbedscapes.com", "_blank");
	
    
	menu.showMenu();
}