//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", "default.htm", null);
	menu.addItem("newid", "Whats New", "Site Information", "info.htm", null);
	menu.addItem("generalid", "General Pages", "General Destinations", null, null);
	menu.addItem("skywarnid", "Local Skywarn Groups", "Skywarn Group Links", "skywarnlinks.htm", null);
	menu.addItem("messageid", "Message Boards", "Skywarn Message Boards", "http://www.skywarnforum.org/forums", null);
	menu.addItem("spotterid", "Skywarn Spotters", "Skywarn Spotter Destinations", null, null);
	menu.addItem("weatherdataid", "Weather Data", "Weather Data Links", null, null);

	menu.addSubItem("generalid", "About Skywarn", "About Skywarn", "about.htm", "");
	menu.addSubItem("generalid", "FAQ", "FAQ", "faq.htm", "");
	menu.addSubItem("generalid", "Educational Materials", "Educational Materials", "educational.htm", "");
	menu.addSubItem("generalid", "Training Announcements", "Training Announcements", "classes.htm", "");
	menu.addSubItem("generalid", "Skywarn Store", "Skywarn Store", "http://www.anythingweatherstore.com/index.asp?vida=8", "");
	menu.addSubItem("generalid", "Webmaster Information", "Webmaster Information", "aboutwebmaster.htm", "");
	
	menu.addSubItem("spotterid", "Gallery", "Gallery",  "gallery.htm", "");

	menu.addSubItem("weatherdataid", "Surface Data", "Surface Data",  "surface.htm", "");
	menu.addSubItem("weatherdataid", "Upper Level Data", "Upper Level Data",  "upper.htm", "");
	menu.addSubItem("weatherdataid", "Radar Data", "Radar Data",  "radar.htm", "");

	menu.showMenu();
}