function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("item1id", "SFC - Strategies", "",  null, null);
	menu.addItem("item2id", "About Fletcher Peacock", "",  null, null);
	menu.addItem("item3id", "Seminars & Conferences", "",  null, null);
	menu.addItem("item4id", "Best-Seller Author", "Fletcher Peacock is the author of a best-selling book!",  null, null);
	menu.addItem("item5id", "Reach Fletcher Peacock", "To receive more information or explore the possibility of inviting the author into your organization or community",  null, null);

	menu.addSubItem("item1id", "Developed Attitudes - p.2", "",  "english02.html");

	menu.addSubItem("item2id", "Fletcher Peacock`s Education - p.3", "",  "english03.html");
	menu.addSubItem("item2id", "Excellent Communicator and Facilitator - p.4", "",  "english04.html");

	menu.addSubItem("item3id", "North American and Foreign - p.5", "",  "english05.html");
	menu.addSubItem("item3id", "Client Satisfaction (Testimonials) - p.6 - 23", "",  "english06.html");
	menu.addSubItem("item3id", "Business - p.6 - 10", "",  "english06.html");
      menu.addSubItem("item3id", "Health - p.11 - 14", "",  "english11.html");
	menu.addSubItem("item3id", "Education - p.15 - 18", "",  "english15.html");
      menu.addSubItem("item3id", "Public Service - p.19 - 23", "",  "english19.html");

	menu.addSubItem("item4id", "Water The Flowers...Not The Weeds! - p.24", "",  "english24.html");
	menu.addSubItem("item4id", "Beliefs of SFC - p.25", "",  "english25.html");
	menu.addSubItem("item4id", "Resistance leads to persistance - p.26", "", "english26.html");
	menu.addSubItem("item4id", "Dolphinize - A win-win approach - p.27", "",  "english27.html");

	menu.addSubItem("item5id", "On-line form - p.28", "",  "english28.html");

	menu.showMenu();
}