//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("tropwxdata", "Tropical Weather Data", "Tropical Weather Data",  null, null);
	menu.addItem("tcbasins", "Tropical Cyclone Basins", "Tropical Cyclone Basins",  null, null);
	menu.addItem("canestuff", "Hurricane Info", "Hurricane Info",  null, null);
	menu.addItem("localwx", "Local Weather", "Local Weather",  null, null);
	menu.addItem("wxdata", "Weather Data", "Weather Data",  null, null);
        menu.addItem("other", "Other", "Other",  null, null);
	
	menu.addSubItem("tropwxdata", "Current Tropical Data", "Current Tropical Data",  "http://mpittweather.com/default.html#current", "");
	menu.addSubItem("tropwxdata", "Quick Tropical Data", "Quick Tropical Data",  "http://mpittweather.com/default.html#quick", "");

	menu.addSubItem("tcbasins", "Atlantic", "Atlantic",  "http://mpittweather.com/atl.htm", "_blank");
	menu.addSubItem("tcbasins", "Eastern Pacific", "Eastern Pacific",  "http://mpittweather.com/epac.htm", "_blank");
	menu.addSubItem("tcbasins", "Western Pacific", "Western Pacific",  "http://mpittweather.com/wpac.htm", "_blank");
	menu.addSubItem("tcbasins", "Other Basins", "Other Basins",  "http://mpittweather.com/default.html#nwpac", "");
	
	menu.addSubItem("canestuff", "Other Hurricane Info", "Other Hurricane Stuff",  "http://mpittweather.com/other.htm", "_blank");
	menu.addSubItem("canestuff", "Mariner's Guide For Hurricane Awareness In the North Atlantic", "Mariner's Guide For Hurricane Awareness In the North Atlantic",  "http://www.nhc.noaa.gov/marinersguide.pdf", "_blank");
	menu.addSubItem("canestuff", "Hurricane Havens Handbook for the North Atlantic", "Hurricane Havens Handbook for the North Atlantic",  "Hurricane Havens Handbook for the North Atlantic", "_blank");

	menu.addSubItem("localwx", "Macclenny Weather Observatory", "Macclenny Weather Observatory",  "http://mpittweather.com/maccob.htm", "_blank");
	menu.addSubItem("localwx", "Hampton Roads Weather Page", "Hampton Roads Weather Page",  "http://mpittweather.com/hampwx.htm", "_blank");
       	menu.addSubItem("localwx", "Ft Myers Weather Page", "Ft. Myers Weather Page",  "http://mpittweather.com/fywx.htm", "_blank");
        menu.addSubItem("localwx", "Madisonville Weather Page", "Madisonville Weather Page",  "http://mpittweather.com/madwx.htm", "_blank");
	menu.addSubItem("localwx", "Florida Weather Data", "Florida Weather Data", "http://mpittweather.com/flawea.htm", "_blank"); 
        menu.addSubItem("localwx", "NWS Jacksonville", "NWS Jacksonville",  "http://www.srh.noaa.gov/jax", "_blank");

	menu.addSubItem("wxdata", "Severe Weather Page", "Severe Weather Page",  "http://mpittweather.com/severewx.html", "_blank");
	menu.addSubItem("wxdata", "Aviation Weather", "Aviation Weather",  "http://aviationweather.gov", "_blank");
	menu.addSubItem("wxdata", "Hydrometerological Weather", "Hydrometerological Weather",  "http://www.hpc.ncep.noaa.gov/", "_blank");
        menu.addSubItem("wxdata", "Marine Weather", "Marine Weather",  "http://www.opc.ncep.noaa.gov/", "_blank");

        menu.addSubItem("other", "Links,etc.", "Links & Webrings",  "http://mpittweather.com/links&webrings.htm", "_blank");
	menu.addSubItem("other", "My Profile", "My Profile",  "http://mpittweather.com/me.htm", "_blank");
	
        menu.showMenu();
}