//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("x", "HOME", "Warlock454.com Home", "http://www.warlock454.com");
	menu.addItem("sd", "Warlock454.com Links", "http://www.warlock454.com",  null, null);
	menu.addItem("rd", "Radar & Satellite", "Radar & Satellite",  null, null);
	menu.addItem("fc", "NOAA 7-Day Forecasts for the Area", "NOAA Forecasts",  null, null);

		
	menu.addSubItem("sd", "A Blog", "Our WeBlog",  "http://www.warlock454.com/blog/index.php", "");
	menu.addSubItem("sd", "Dawn's Poetry", "Poetry Pages",  "http://www.warlock454.com/poetry/poetryindex.html", "");
	menu.addSubItem("sd", "Photo Gallery", "Our Pictures",  "http://www.warlock454.com/gallery/index.php", "");
	menu.addSubItem("sd", "Sunrise Beach Complex Weather", "LOTS of weather data",  "http://www.warlock454.com/weather/stevesweather.php", "");
	menu.addSubItem("sd", "Sunrise Beach 8MM East Live Webcam", "On the Main Channel, Lake of the Ozarks, Missouri, USA",  "http://www.unimara.com/vision/stream1.html", "_blank");
	menu.addSubItem("sd", "Sunrise Beach 8MM North Live Webcam", "On the Main Channel, Lake of the Ozarks, Missouri, USA",  "http://97.87.191.74:1025/img/main.cgi?next_file=main.htm" "_blank");
	menu.addSubItem("sd", "Sunrise Beach 8MM North Live Webcam", "On the Main Channel, Lake of the Ozarks, Missouri, USA",  "http://97.87.191.74:1024/img/main.cgi?next_file=main.htm" "_blank");
	menu.addSubItem("sd", "Contact Us", "Send us Email",  "mailto:contactus@warlock454.com", "");

	menu.addSubItem("rd", "Local Current Radar (still)", "local radar still",  "http://www.crh.noaa.gov/radar/latest/DS.p19r0/si.ksgf.shtml", "");
	menu.addSubItem("rd", "National Current Radar (still)", "national radar still",  "http://www.crh.noaa.gov/radar/mosaic/DS.p19r0/ar.us.conus.shtml", "");
	menu.addSubItem("rd", "Local Current Radar Loop", "local radar loop",  "http://www.crh.noaa.gov/radar/loop/DS.p19r0/si.ksgf.shtml", "");
	menu.addSubItem("rd", "National Current Radar Loop", "national radar loop",  "http://weather.noaa.gov/radar/mosaic.loop/DS.p19r0/ar.us.conus.shtml", "");
	menu.addSubItem("rd", "GOES8 Satellite Images", "GOES8 images",  "http://www.goes.noaa.gov/index.html", "");

	menu.addSubItem("fc", "Sunrise Beach", "7-day forecast",  "http://www.crh.noaa.gov/forecasts/MOZ069.php?warncounty=MOC029&city=Sunrise+Beach", "");
	menu.addSubItem("fc", "Camdenton", "7-day forecast",  "http://www.crh.noaa.gov/ifps/MapClick.php?CityName=Camdenton&state=MO&site=SGF", "");
	menu.addSubItem("fc", "Lake Ozark", "7-day forecast",  "http://www.crh.noaa.gov/ifps/MapClick.php?CityName=Lake+Ozark&state=MO&site=SGF", "");
	menu.addSubItem("fc", "Laurie", "7-day forecast",  "http://www.crh.noaa.gov/ifps/MapClick.php?CityName=Laurie&state=MO&site=SGF", "");
	menu.addSubItem("fc", "Osage Beach", "7-day forecast",  "http://www.crh.noaa.gov/ifps/MapClick.php?CityName=Osage+Beach&state=MO&site=SGF", "");

	menu.showMenu();
}