function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("sprgid", "Spring Showcase", "Spring Showcase",  null, null);
	menu.addItem("socialid", "Social Gatherings", "Social Gatherings",  null, null);
	menu.addItem("infoid", "Informational Items", "Informational Items",  null, null);
	menu.addItem("mainid", "Main Menu", "Main Menu",  null, null);
	menu.addItem("miscid", "Miscellaneous", "Miscellaneous",  null, null);

	menu.addSubItem("sprgid", "Spring Page 1", "Spring Page 1",  "spring_1001.htm");

	menu.addSubItem("socialid", "Charity Ball Page 1", "Charity Ball Page 1",  "charity_p1.htm");
	menu.addSubItem("socialid", "Charity Ball Page 2", "Charity Ball Page 2",  "charity_p2.htm");
	menu.addSubItem("socialid", "Party Work", "Party Work",  "party_p1.htm");
	menu.addSubItem("socialid", "Prom Night", "Prom Night",  "prom_p1.htm");
	menu.addSubItem("socialid", "Weddings Work 1", "Weddings Work 1",  "drake_p1.htm");

	menu.addSubItem("infoid", "Anivrsry / Birthstone", "Anivrsry / Birthstone",  "anniv.htm");
	menu.addSubItem("infoid", "Flower Meanings", "Flower Meanings",  "flwrmean.htm");
	menu.addSubItem("infoid", "Flowers Of The Month", "Flowers Of The Month",  "flwrmonth.htm");
	menu.addSubItem("infoid", "Wedding Page 1", "Wedding Page 1",  "wed1.htm");
	menu.addSubItem("infoid", "Wedding Page 2", "Wedding Page 2",  "wed2.htm");
	menu.addSubItem("infoid", "Wedding Page 3", "Wedding Page 3",  "wed3.htm");
	menu.addSubItem("infoid", "Wedding Page 4", "Wedding Page 4",  "wed4.htm");
	menu.addSubItem("infoid", "Wedding Planner", "Wedding Planner",  "wedplan.htm");

	menu.addSubItem("mainid", "Home Page", "Home Page",  "index.htm");
	menu.addSubItem("mainid", "Coupon Page", "Coupon Page",  "coupons.htm");
	menu.addSubItem("mainid", "Contact Us", "Contact Us",  "mailto:mrskaper@yahoo.com");

	menu.addSubItem("miscid", "Web Sites To You", "Web Sites To You",  "http://www.websitestoyou.com/");

	menu.showMenu();
}