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

	menu = new Menu();
	menu.addItem("webmasterid", "Home", "Home",  "index.html");
	menu.addItem("newsid", "Hot News", "Hot News",  "hot.html");
	menu.addItem("freedownloadid", "Parish Information", "Parish Information",  null, null);
	menu.addItem("searchengineid", "Bulletin", "Bulletin",  null, null);
	menu.addItem("miscid", "Calendar", "Calendar",  "calendar.html");
        menu.addItem("lastid", "Ministries", "Ministries",  "min.html");
        menu.addItem("schoolid", "School", "School",  "school.html");
        menu.addItem("photoid", "Photo Tour", "Photo tour",  null, null);
        menu.addItem("questionsid", "Questions", "Questions",  "com.html");


	menu.addSubItem("freedownloadid", "Parish Staff", "Parish Staff",  "parish.html");
	menu.addSubItem("freedownloadid", "Mass Schedule and Membership", "Mass Schedule and Membership",  "parish.html#mass");
	menu.addSubItem("freedownloadid", "Sacraments and Stewardship", "Sacraments and Stewardship",  "parish.html#stewardship");

	menu.addSubItem("searchengineid", "Mass Intentions", "Mass Intentions",  "bull.html#intentions");
	menu.addSubItem("searchengineid", "Parish News", "Parish News", "bull.html#news");
	menu.addSubItem("searchengineid", "Joke of the Week", "Joke of the Week",  "bull.html#joke");
	menu.addSubItem("searchengineid", "Community News", "Community News",  "bull.html#community");
	menu.addSubItem("searchengineid", "weekly reflections", "weekly reflections",  "bull.html#food");

	menu.addSubItem("lastid", "Yahoo", "Yahoo",  "http://www.yahoo.com/");
	menu.addSubItem("lastid", "Infoseek", "Infoseek",  "http://www.infoseek.com/");
	menu.addSubItem("lastid", "Excite", "Excite", "http://www.excite.com");
	menu.addSubItem("lastid", "HotBot", "HotBot",  "http://www.hotbot.com");

	menu.addSubItem("photoid", "Photo Tour", "Photo Tour",  "photo.html");


	menu.showMenu();
}