//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("absaid", "ABSA", "ABSA",  null, null);
	menu.addItem("regentid", "Regent Honeyeaters", "Regent H/E",  null, null);
	menu.addItem("downloadid", "Downloads", "downloads",  null, null);

 menu.addSubItem("absaid", "ABSA HOMEPAGE", "Home",  "index.html", "");
 menu.addSubItem("absaid", "", "dummy",  "", "");


	menu.addSubItem("regentid", "Profile of Regent Honeyeaters", "profile",  "regentprofile.html", ""); 
	menu.addSubItem("regentid", "Recent Sightings of Regent Honeyeaters", "Recent Sightings",  "recentregents.html", ""); 
	menu.addSubItem("regentid", "Bibliography", "References",  "regentbib.html", ""); 	menu.addSubItem("regentid", "Pictures of Regent Honeyeaters", "Regent Gallery",  "regentgallery.html", "");
	menu.addSubItem("regentid", "Research on Regent Honeyeaters", "Research",  "regentrecovery.html", "");
	menu.addSubItem("regentid", "Radio Tracking Regent Honeyeaters", "Radio Tracking",  "regentradio.html", "");
	menu.addSubItem("regentid", "Distribution", "Distribution",  "regentdistribution.html", "");
 menu.addSubItem("regentid", "Events for Regent Honeyeaters", "Events",  "regentevents.html", ""); 
 menu.addSubItem("regentid", "What can I do?", "Things you can do",  "regentactions.html", "");
 menu.addSubItem("regentid", "Regent Honeyeater HOME PAGE", "regent home page",  "regenthome.html", "");
 menu.addSubItem("regentid", "", "dummy",  "", "");

 menu.addSubItem("downloadid", "Download Recovery Plan (pdf)", "Recovery Plan Download",  "regentrecov.pdf", "");
 menu.addSubItem("downloadid", "Download a Sightings Report form ", "Download form",  "regentrecordsheet.pdf", "");
 menu.addSubItem("downloadid", "Download Newsletter 9 ", "Download nsltr",  "Where the Regents Roam No9.pdf", "");
 menu.addSubItem("downloadid", "Download Newsletter 10 ", "Download nsltr",  "Where the Regents Roam No10.pdf", "");
 menu.addSubItem("downloadid", "Download Newsletter 11 ", "Download nsltr",  "Where the Regents Roam No11.pdf", "");
 menu.addSubItem("downloadid", "Download Newsletter 12 ", "Download nsltr",  "Where the Regents Roam No12.pdf", "");
 menu.addSubItem("downloadid", "Download Newsletter 13 ", "Download nsltr",  "Where the Regents Roam No13.pdf", "");
 menu.addSubItem("downloadid", "", "dummy",  "", "");


	menu.showMenu();
}