//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("homeid", "Home", "Home",  "http://web.nmsu.edu/~cnewsom/index.htm", null);
	menu.addItem("amphibid", "Amphibians", "Amphibians",  null, null);
	menu.addItem("lizardid", "Lizards", "Lizards",  null, null);
	menu.addItem("snakeid", "Snakes", "Snakes",  null, null);
	menu.addItem("turtleid", "Turtles", "Turtles",  null, null);
	menu.addItem("emailid", "Contact Me", "Contact Me", "mailto:cnewsom@nmsu.edu", null);

	menu.addSubItem("amphibid", "Frogs & Toads", "Frogs & Toads",  "http://web.nmsu.edu/~cnewsom/frogs-toads.html");
	menu.addSubItem("amphibid", "Salamanders", "Salamanders",  "http://web.nmsu.edu/~cnewsom/salamanders.html");
	
	menu.addSubItem("lizardid", "Lizards", "Lizards",  "http://web.nmsu.edu/~cnewsom/lizards.html");
	menu.addSubItem("lizardid", "Venomous Lizards", "Venomous Lizards",  "http://web.nmsu.edu/~cnewsom/venomous-lizards.html");
	
	menu.addSubItem("snakeid", "Colubrids", "Colubrids",  "http://web.nmsu.edu/~cnewsom/colubrids.html");
	menu.addSubItem("snakeid", "Venomous", "Venomous",  "http://web.nmsu.edu/~cnewsom/venomous.html");
      
	menu.addSubItem("turtleid", "Land Turtles", "Land Turtles",  "http://web.nmsu.edu/~cnewsom/land-turtles.html");
	menu.addSubItem("turtleid", "Water Turtles", "Water Turtles",  "http://web.nmsu.edu/~cnewsom/water-turtles.html");
	
	
	menu.showMenu();
}