function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("strathnairnid", "Strathnairn Heritage", "Strathnairn Heritage");
//	menu.addItem("miscid", "Miscellaneous", "Miscellaneous");
	menu.addItem("searchengineid", "Search Engines", "Search Engines");
	menu.addItem("Adminid", "Site Administration", "Site Administration");

	menu.addSubItem("strathnairnid", "Home Page", "Home Page",  "/default.asp");
	menu.addSubItem("strathnairnid", "Archaeology Content", "Archaeology Content",  "/information/archaeology/default.asp");
    menu.addSubItem("strathnairnid", "History", "History",  "/information/historical/default.asp");
    menu.addSubItem("strathnairnid", "Personal Memoirs", "Personal Memoirs",  "/information/memoirs/default.asp");
    menu.addSubItem("strathnairnid", "Picture Gallery", "Picture Gallery",  "/information/photogallery/photos.asp");
	menu.addSubItem("strathnairnid", "Place Names of Strathnairn", "Place Names of Strathnairn",  "/information/placenames/");
	menu.addSubItem("strathnairnid", "Bibliography", "Bibliography",  "/information/bibliography/");
	menu.addSubItem("strathnairnid", "Touring Guide", "Touring Guide",  "/information/touring/");
	menu.addSubItem("strathnairnid", "Roads, Railways and Bridges", "Roads, Railways and Bridges",  "/information/rrb/");
	menu.addSubItem("strathnairnid", "Strathnairn Today", "Strathnairn Today",  "/information/strathtoday/");
	menu.addSubItem("strathnairnid", "Archive Section", "Archive Section",  "/archive/");
	menu.addSubItem("strathnairnid", "Sign our Guestbook", "Sign our Guestbook",  "/guestbook/default.asp");
	menu.addSubItem("strathnairnid", "Links", "Links",  "/links/default.asp");

	menu.addSubItem("searchengineid", "Yahoo", "Yahoo",  "http://www.yahoo.com/");
	menu.addSubItem("searchengineid", "UK Yahoo", "UK Yahoo",  "http://www.yahoo.co.uk/");
	menu.addSubItem("searchengineid", "Altavista", "Altavista",  "http://www.altavista.com/");
	menu.addSubItem("searchengineid", "Infoseek", "Infoseek",  "http://www.infoseek.com/");
	menu.addSubItem("searchengineid", "Excite", "Excite", "http://www.excite.com");
	menu.addSubItem("searchengineid", "HotBot", "HotBot",  "http://www.hotbot.com");

//	menu.addSubItem("miscid", "Link 1", "Link 1",  "http://www.strathnairnheritage.co.uk/");
//	menu.addSubItem("miscid", "Link 2", "Link 2",  "http://www.strathnairnheritage.co.uk/");
//	menu.addSubItem("miscid", "Link 3", "Link 3",  "http://www.strathnairnheritage.co.uk/");
//	menu.addSubItem("miscid", "Link 4", "Link 4",  "http://www.strathnairnheritage.co.uk/");
//	menu.addSubItem("miscid", "Link 5", "Link 5",  "http://www.strathnairnheritage.co.uk/");

	menu.addSubItem("Adminid", "Login", "Login",  "/login.asp");
	menu.addSubItem("Adminid", "Administration Index", "Administration Index",  "/administration.asp");
	menu.addSubItem("Adminid", "Logout", "Logout",  "/logout.asp");

	
	menu.showMenu();
}