//Top Nav bar script v2.1- http://www.dynamicdrive.com/dynamicindex1/sm/index.htm

function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location, linktarget);

	menu = new Menu();
	menu.addItem("webmasterid", "Home", "Home",  "index.htm", null);
	menu.addItem("newsid", "Dutch News Sources", "Dutch News Sources",  null, null);
	menu.addItem("freedownloadid", "International News Sources", "International News Sources",  null, null);
	menu.addItem("searchengineid", "Internet Search Services", "Internet Search Services",  null, null);
	menu.addItem("miscid", "Miscellaneous", "Miscellaneous",  null, null);

	

	menu.addSubItem("newsid", "Dutch Newswires", "Dutch Newswires",  "nieuwsdiensten.htm", "");
	menu.addSubItem("newsid", "Dutch Newspapers", "Dutch Newspapers",  "dagbladen.htm", "");
	menu.addSubItem("newsid", "Dutch Magazines", "Dutch Magazines",  "weekbladen.htm", "");
	menu.addSubItem("newsid", "Dutch Journals", "Dutch Journals",  "vaknieuws.htm", "");
	menu.addSubItem("newsid", "Newsrelated", "Newsrelated",  "nieuwsgerelateerd.htm", "");
	

	menu.addSubItem("freedownloadid", "Newswires", "Newswires",  "newswires.htm", "");
	menu.addSubItem("freedownloadid", "Newspapers", "Newspapers",  "newspapers.htm", "");
	menu.addSubItem("freedownloadid", "Magazines", "Magazines",  "magazines.htm", "");
        menu.addSubItem("freedownloadid", "Special Reports", "Special Reports",  "special_reports.htm", "");
        menu.addSubItem("freedownloadid", "Newsrelated", "Newsrelated",  "newsrelated.htm", "");


	menu.addSubItem("searchengineid", "Dutch Search Services", "Dutch Search Services",  "dutch_searchservices.htm", "");
	menu.addSubItem("searchengineid", "International Search Services", "International Search Services",  "international_searchservices.htm", "");
	

	menu.addSubItem("miscid", "About This Site", "About This Site",  "over.htm", "");
	menu.addSubItem("miscid", "About The Author", "About The Author",  "over_bozewolf.htm", "");
	menu.addSubItem("miscid", "Contact", "Contact",  "mailto:bozewolf@wanadoo.nl?subject=feedback-nieuwsbronnen.net", "");

	menu.showMenu();
}
