//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("birds", "BIRDS", "BIRDS",  null, null);
	menu.addItem("butterflies", "BUTTERFLIES", "BUTTERFLIES",  null, null);
	menu.addItem("odes", "DRAGONFLIES", "DRAGONFLIES",  null, null);
	menu.addItem("misc", "ASSORTED", "ASSORTED",  null, null);

	menu.addSubItem("birds", "Bird News", "Bird News",  "BIRDNEWS.html", "");
	menu.addSubItem("birds", "Birds of Utopia", "Birds of Utopia",  "BIRDS.html", "");
	menu.addSubItem("birds", "Birding Guide", "Birding Guide",  "BIRDGUIDE.html", "");
	menu.addSubItem("birds", "Bird Photos", "Bird Photos",  "BIRDPHOTO.html", "");
	menu.addSubItem("birds", "Hummingbirds", "Hummingbirds",  "HUMMERPHOTO.html", "");
	menu.addSubItem("birds", "Lost Maples Reports", "Lost Maples Reports",  "LMREPORTS.html", "");
	menu.addSubItem("birds", "Birding Sites", "Birding Sites",  "SITES.html", "");
	menu.addSubItem("birds", "Bird List", "Bird List",  "BIRDLIST.html", "");
	menu.addSubItem("birds", "Winter Bird Count", "Winter Bird Count",  "COUNT.html", "");

	menu.addSubItem("butterflies", "Butterflies Front Page", "Butterflies Front Page",  "BUTTERFLIES.html", "");
	menu.addSubItem("butterflies", "Butterfly Photos", "Butterfly Photos",  "BFLYPHOTO.html", "");
	menu.addSubItem("butterflies", "Butterfly List", "Butterfly List",  "BFLYLIST.html", "");
	menu.addSubItem("butterflies", "Butterfly News", "Butterfly News",  "BFLYNEWS.html", "");

	menu.addSubItem("odes", "Dragonfly Front Page", "Dragonfly Front Page",  "DRAGONFLIES.html", "");
	menu.addSubItem("odes", "Ode Photos", "Ode Photos",  "DFLYPHOTO.html", "");
	menu.addSubItem("odes", "Ode News", "Ode News",  "ODENEWS.html", "");
	menu.addSubItem("odes", "Dragonfly &amp; Damselfly List", "Dragonfly &amp; Damselfly List",  "ODELIST.html", "");

	menu.addSubItem("misc", "Critters, Bugs, & Stuff", "Critters, Bugs, & Stuff",  "CRITTERS.html", "");
	menu.addSubItem("misc", "Lost Maples", "Lost Maples", "LOSTMAPLES.html", "");
	menu.addSubItem("misc", "Garner State Park", "Garner State Park", "GARNER.html", "");
	menu.addSubItem("misc", "Local Site Guide", "Local Site Guide",  "SITEGUIDE.html", "");

	menu.showMenu();
}
