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

	menu = new Menu();
	menu.addItem("webid", "Web Design", "Web Design",  null, null);
	menu.addItem("photographyid", "Photography  &nbsp; &nbsp; by &nbsp; Ian ", "Photography &nbsp;  &nbsp; by &nbsp; Ian ", null, null, null, null);
	menu.addItem("miscid", "Miscellaneous", "Miscellaneous",  null, null);

	menu.addSubItem("webid", "Design", "Design",  "http://www.ybot.ca/Designs.html", "");
	menu.addSubItem("webid", "Redesigns", "Redesigns",  "http://www.ybot.ca/Redesigns.html", "");
	menu.addSubItem("webid", "Do It Yourself", "Do It Yourself", "http://www.ybot.ca/DoItYourself.html", "");
	menu.addSubItem("webid", "Web Site Promotion", "Web Site Promotion",  "http://www.ybot.ca/Promotion.html", "");
	menu.addSubItem("webid", "Adding Multimedia", "Adding Multimedia",  "http://www.ybot.ca/Multimedia.html", "");	
	menu.addSubItem("webid", "Legion Web Sites", "Legion Web Sites",  "http://www.ybot.ca/LegionTemplateProgram.html", "");

	menu.addSubItem("photographyid", "Photography", "Photography",  "http://www.ybot.ca/photography/index.html", "");
	menu.addSubItem("photographyid", "Headshots for Actors and Models", "Headshots for Actors and Models",  "http://www.ybot.ca/photography/headshots.html", "");
	menu.addSubItem("photographyid", "Online Gallery", "Online Gallery",  "http://ybot.ca/PhotosbyyBOT/nfpicturepro/index.php", "_blank");
	menu.addSubItem("miscid", "Feedback", "Feedback",  "http://www.ybot.ca/feedback.html", "_blank");
	menu.addSubItem("miscid", "Training", "Training",  "http://www.ybot.ca/Training.html", "");
	menu.addSubItem("miscid", "Our Portfolio", "Our Portfolio",  "http://www.ybot.ca/portfolio.html", "");
	menu.addSubItem("miscid", "Home", "Home",  "http://www.ybot.ca/index2.html", "");


	menu.showMenu();
}