//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("home", "Home", "Home",  "index.html", null);
	menu.addItem("clouds", "Clouds", "Clouds",  "clouds.html", null);
	menu.addItem("lightning", "Lightning", "Lightning",  "lightning.html", null);
	menu.addItem("tornadoes", "Tornadoes", "Tornadoes",  "tornados.html", null);
	menu.addItem("may3", "Video Clips", "Video Clips",  "video.html", null);
	menu.addItem("news", "News", "News",  "news.html", null);
	menu.addItem("links", "Links", "Links",  "links.html", null);
	menu.addItem("contact", "Contact", "Contact",  "contact.html", null);

	menu.addSubItem("home", "Dynamic Drive", "Dynamic Drive",  "http://www.dynamicdrive.com/", "");

	menu.addSubItem("clouds", "CNN", "CNN",  "http://www.cnn.com", "");

	menu.addSubItem("lightning", "Dynamic Drive", "Dynamic Drive",  "http://www.dynamicdrive.com/", "");

	menu.addSubItem("tornadoes", "Yahoo", "Yahoo",  "http://www.yahoo.com/", "");

	menu.addSubItem("may3", "Cnet", "Cnet",  "http://www.cnet.com/", "");

	menu.addSubItem("links", "Storm-Track Homepage", "Cnet",  "http://www.stormtrack.org/", "");
	menu.addSubItem("links", "Texas Severe Storms Association", "Cnet",  "http://www.tessa.org/", "");
	menu.addSubItem("links", "SKYWARN", "Cnet",  "http://www.skywarn.net/", "");
	menu.addSubItem("links", "Federal Emergency Managment", "Cnet",  "http://www.fema.gov/", "");
	menu.addSubItem("links", "Hurricane City", "Cnet",  "http://hurricanecity.com/", "");
	menu.addSubItem("links", "Chasing FAQs", "Cnet",  "http://www.cimms.ou.edu/~doswell/ChasFAQ.html", "");
	menu.addSubItem("links", "Chase Safety", "Cnet",  "http://www.cimms.ou.edu/~doswell/Chasing2.html", "");
	menu.addSubItem("links", "Chase Ethics", "Cnet",  "http://www.cimms.ou.edu/~stumpf/cethics.html", "");
	menu.addSubItem("links", "Tornado Project", "Cnet",  "http://www.tornadoproject.com/", "");
	menu.addSubItem("links", "...More Links...", "Cnet",  "links.html", "");

	menu.showMenu();
}