function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("webmasterid", "In general", "General info about the pheasantry, openinghours, route description",  null, null);
	menu.addItem("newsid", "Collection", "which kinds of pheasants and prices",  null, null);
	menu.addItem("freedownloadid", "Projects", "Info about our projects",  null, null);
	menu.addItem("searchengineid", "Information", "Our activities to give information about the pheasantry and pheasants",  null, null);
	menu.addItem("miscid", "Contacts", "About our contacts",  null, null);
        menu.addItem("miscid1", "Friends of the Pheasantry", "About sponsoring, voluteerwork, etc.",  null, null);
        menu.addItem("miscid2", "Guestbook", "Please sign our guestbook. Thank you!",  null, null);

	menu.addSubItem("webmasterid", "Where", "Where to find the pheasantry and opening hours",  "where.htm");
        menu.addSubItem("webmasterid", "Route", "Route description and maps",  "routedescription.htm");

	menu.addSubItem("newsid", "Collection", "About the collection",  "collection.htm");
        menu.addSubItem("newsid", "Price list", "Price info",  "pricelist.htm");
        	
	menu.addSubItem("freedownloadid", "Breedingprogramm", "Information about breeding",  "breeding.htm");
        menu.addSubItem("freedownloadid", "Pheasants & Arts", "Sculptures in the Pheasantry",  "pheasant_arts_main_e.htm");	
        menu.addSubItem("freedownloadid", "Vietnam-project", "About Vietnampheasant Lopura hatinhensis",  "e_vietnam.htm");
	menu.addSubItem("freedownloadid", "Nature&Environment", "About nature and environment",  "nature&environment.htm");		
	
	menu.addSubItem("searchengineid", "Hot News", "Hot News about the pheasantry",  "news.htm");
	menu.addSubItem("searchengineid", "Information", "Our activities to give information about the pheasantry and pheasants",  "information.htm");
	menu.addSubItem("searchengineid", "Library", "About pheasants books",  "library.htm");	
	menu.addSubItem("searchengineid", "Links", "Links to pheasant, peafowl & junglefowl related websites",  "e_links.htm");

	menu.addSubItem("miscid", "Contacts", "Contacts with other enthousiasts",  "contacts.htm");

	menu.addSubItem("miscid1", "Friends of the Pheasantry", "About volunteerwork, sponsoring, etc.",  "friends.htm");
	

	menu.addSubItem("miscid2", "Guestbook", "Please sign our guestbook. We really appreciate your opinion",  "guestbook.htm");
       

	menu.showMenu();
}