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

	menu = new Menu();
	menu.addItem("webmasterid", "Bird Photos", "Bird Photos",  null, null);
	menu.addItem("newsid", "For Sale", "For Sale",  null, null);
	menu.addItem("freedownloadid", "Updates", "Updates",  null, null);
	menu.addItem("searchengineid", "Miscellaneous", "Miscellaneous",  null, null);
	menu.addItem("miscid", "Links", "Links",  null, null);

	menu.addSubItem("webmasterid", "Chicken Photos 1", "Chicken Photos 1", "OEGB1.html");
	menu.addSubItem("webmasterid", "Chicken Photos 2", "Chicken Photos 2", "OEGB2.html");
	menu.addSubItem("webmasterid", "Duck Photos", "Duck Photos", "Duck.html");
	menu.addSubItem("webmasterid", "Peafowl Photos", "Peafowl Photos", "Peafowl.html");
	menu.addSubItem("webmasterid", "Dove Photos", "Dove Photos", "Dovephotos.html");

	menu.addSubItem("newsid", "NonAvailable", "NonAvailable",  "http://www.Bantychicken.com/");

	menu.addSubItem("freedownloadid", "Updates", "Updates", "Updates.html");
	
        menu.addSubItem("searchengineid", "Yahoo", "Yahoo",  "http://www.yahoo.com/");
	menu.addSubItem("searchengineid", "Infoseek", "Infoseek",  "http://www.infoseek.com/");
	menu.addSubItem("searchengineid", "Excite", "Excite", "http://www.excite.com");
	menu.addSubItem("searchengineid", "Bravenet", "Bravenet",  "http://www.bravenet.com");

	menu.addSubItem("miscid", "Bantychicken.com", "Bantychicken.com",  "http://www.Bantychicken.com/");
	menu.addSubItem("miscid", "Birdshippers", "Birdshippers",  "http://www.birdshippers.org/");
	menu.addSubItem("miscid", "OEGBCA", "OEGBCA",  "http://www.bantychicken.com/OEGBCA/index.html");
	menu.addSubItem("miscid", "Eggbay", "Eggbay",  "http://www.Eggbay.com/");
	menu.addSubItem("miscid", "Gamebird&WaterfowlPages", "Gamebird&WaterfowlPages",  "http://www.gbwf.net/main.html");
	
	menu.showMenu();
}