function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("webmasterid", "Main", "Main",  null, null);
	menu.addItem("famhist", "Family History", "Family History",  null, null);
	menu.addItem("famlineage", "Family Lineage", "Family Lineage", null, null);
	menu.addItem("travel", "Travel", "Travel", null, null);
	menu.addItem("palbum", "Photo Album", "Photo Album", null, null);
	menu.addItem("valbum", "Video Album", "Video Album", null, null);
	menu.addItem("lastcolumn", "", "",  null, null);

	menu.addSubItem("webmasterid", "Home", "Home", "index.htm");
	menu.addSubItem("webmasterid", "Acknowledgements", "Acknowledgements", "acknowledgements.htm");
	menu.addSubItem("webmasterid", "Comments & Suggestions", "Comments & Suggestions", "comment.htm");

	menu.addSubItem("famhist", "Bradbury", "Bradbury", "bradbury_history.htm");
	menu.addSubItem("famhist", "Cavanagh", "Cavanagh", "cavanagh_history.htm");
	menu.addSubItem("famhist", "Wigg", "Wigg", "wigg_history.htm");
	menu.addSubItem("famhist", "Gahan", "Gahan", "gahan_history.htm");
	menu.addSubItem("famhist", "__________", "", "index.htm");
	menu.addSubItem("famhist", "O'Brien", "O'Brien", "obrien_history.htm");
	menu.addSubItem("famhist", "Fry", "Fry", "fry_history.htm");
	menu.addSubItem("famhist", "Lanigan", "Lanigan", "lanigan_history.htm");
	menu.addSubItem("famhist", "Gray", "Gray", "gray_history.htm");
	menu.addSubItem("famhist", "__________", "", "index.htm");
	menu.addSubItem("famhist", "Notable Family Members", "Notable Family Members", "notable.htm");
	menu.addSubItem("famhist", "__________", "", null);
	menu.addSubItem("famhist", "Documents", "Documents", "documents.htm");
	menu.addSubItem("famhist", "__________", "", null);
	menu.addSubItem("famhist", "Argentine Railways", "Argentine Railways", "arg_railways.htm");
	menu.addSubItem("famhist", "__________", "", null);
	menu.addSubItem("famhist", "King George IV", "King George IV", "king_george_iv.htm");
	menu.addSubItem("famhist", "__________", "", "index.htm");
	menu.addSubItem("famhist", "Irish time line", "Irish time line", "irish_time_line.htm");

	menu.addSubItem("famlineage", "Introduction", "Introduction", "lineageintro.htm");
	menu.addSubItem("famlineage", "__________", "", "index.htm");
	menu.addSubItem("famlineage", "Michael's Lineage", "Michael's Lineage", "michael_lineage_history.htm");
	menu.addSubItem("famlineage", "Michael's Ancestors", "Michael's Ancestors", "michael_lineage.htm");
	menu.addSubItem("famlineage", "__________", "", null);
	menu.addSubItem("famlineage", "Elaine's Lineage", "Elaine's Lineage", "elaine_lineage_history.htm");
	menu.addSubItem("famlineage", "Elaine's Ancestors", "Elaine's Ancestors", "elaine_lineage.htm");
	menu.addSubItem("famlineage", "__________", "", null);
	menu.addSubItem("famlineage", "Bradbury Descendants", "Bradbury Descendants", "john_shaw_bradbury.htm");
	menu.addSubItem("famlineage", "Bradbury Ancestors", "Bradbury Ancestors", "john_shaw_bradbury_ancestors.htm");
	menu.addSubItem("famlineage", "Cavanagh Descendants", "Cavanagh Descendants", "edward_cavanagh.htm");
	menu.addSubItem("famlineage", "Wigg Descendants", "Wigg Descendants", "john_wigg.htm");
	menu.addSubItem("famlineage", "__________", "", "index.htm");
	menu.addSubItem("famlineage", "Fry Descendants", "Fry Descendants", "francis_fry.htm");
	menu.addSubItem("famlineage", "O'Brien Descendants", "O'Brien Descendants", "edward_obrien.htm");
	menu.addSubItem("famlineage", "Lanigan Descendants", "Lanigan Descendants", "william_lanigan.htm");

	menu.addSubItem("travel", "Argentina", "Argentina",  "argentina.htm");
	menu.addSubItem("travel", "Canada", "Canada",  "canada.htm");

	menu.addSubItem("palbum", "From All Over", "From All Over", "general_photo_album.htm");
	menu.addSubItem("palbum", "Bradbury Album", "Bradbury Album", "bradbury_album.htm");
	menu.addSubItem("palbum", "Fry Album", "Fry Album", "fry_album.htm");

	menu.addSubItem("valbum", "Videos from Web", "Videos from Web", "video_album.htm");
	menu.addSubItem("valbum", "Videos from CD", "Videos from CD", "video_album_cd.htm");

	menu.showMenu();
}