//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("pageid", "Pages", "Pages",  null, null);
	menu.addItem("TrainSitesid", "Train Sites", "Train Info",  null, null);
	menu.addItem("newsid", "News Sites", "News Sites",  null, null);
	menu.addItem("freedownloadid", "Free Downloads", "Free Downloads",  null, null);
	menu.addItem("searchengineid", "Search Engines", "Search Engines",  null, null);
	menu.addItem("miscid", "Miscellaneous", "Miscellaneous",  null, null);

	menu.addSubItem("pageid", "True volunteers ", "True volunteers ",  "start_here.htm", "");
	menu.addSubItem("pageid", "Individual restorations", "Individual restorations",  "page_2.htm", "");
	menu.addSubItem("pageid", "Light Rail Inspection Car Introduction ", "Light Rail Inspection Car Introduction ",  "page_3.htm", "");
	menu.addSubItem("pageid", "Design of Replica Cycle Car ", "Design of Replica Cycle Car ",  "page_4.htm", "");
	menu.addSubItem("pageid", "Picture Page ", "Picture Page ",  "page_5.htm", "");

	menu.addSubItem("TrainSitesid", "HET", "HET",  "http://www.het.org.au/", "");
	menu.addSubItem("TrainSitesid", "Paul Turtles Page", "Paul Turtles Page",  "http://www.paulturtle.com/", "");
	menu.addSubItem("TrainSitesid", "City Rail", "City Rail",  "http://www.cityrail.info/", "");
	menu.addSubItem("TrainSitesid", "Rail Corp", "Rail Corp",  "http://www.railcorp.nsw.gov.au/", "_blank");
	menu.addSubItem("TrainSitesid", "Tourist Railway Association Kurrajong ", "Tourist Railway Association Kurrajong ",  "http://www.trak.org.au/", "_blank");

	menu.addSubItem("newsid", "CNN", "CNN",  "http://www.cnn.com", "");
	menu.addSubItem("newsid", "ABC News", "ABC News",  "http://www.abcnews.com", "");
	menu.addSubItem("newsid", "MSNBC", "MSNBC",  "http://www.msnbc.com", "");
	menu.addSubItem("newsid", "CBS news", "CBS News",  "http://www.cbsnews.com", "");
	menu.addSubItem("newsid", "News.com", "News.com",  "http://news.com", "");
	menu.addSubItem("newsid", "Wired News", "Wired News",  "http://www.wired.com", "");
	menu.addSubItem("newsid", "TechWeb", "TechWeb",  "http://www.techweb.com", "");

	menu.addSubItem("freedownloadid", "Microsoft", "Microsoft",  "http://www.microsoft.com/", "");
	menu.addSubItem("freedownloadid", "Download.com", "Download.com",  "http://download.com/", "");
	menu.addSubItem("freedownloadid", "Tucows", "Tucows",  "http://tucows.com/", "");

	menu.addSubItem("searchengineid", "Yahoo", "Yahoo",  "http://www.yahoo.com.au/", "");
	menu.addSubItem("searchengineid", "Google", "Google",  "http://www.google.com.au/", "");
	menu.addSubItem("searchengineid", "Excite", "Excite", "http://www.excite.com", "");
	menu.addSubItem("searchengineid", "HotBot", "HotBot",  "http://www.hotbot.com", "");

	menu.addSubItem("miscid", "Yarra Valley Railways", "Yarra Valley Railways",  "http://www.yarravalleyrailway.org.au/", "");
	menu.addSubItem("miscid", "Cooma Monaro Railway", "Cooma Monaro Railway",  "http://www.cmrailway.org.au/", "");
	menu.addSubItem("miscid", "Danger Ahead !", "Danger Ahead !",  "http://danger-ahead.railfan.net/accidents/index.html", "");

	menu.showMenu();
}
