//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", "",  null, null);
	menu.addItem("News", "News", "",  null, null);
	menu.addItem("Business", "Business", "",  null, null);
	menu.addItem("CountyInfo", "County Info", "",  null, null);
	menu.addItem("Recreation", "Recreation", "",  null, null);
	menu.addItem("PhotoAlbum", "Photo Albums", "Search Engines",  null, null);
	menu.addItem("Weather", "Weather", null, null);
	menu.addItem("Links", "Links", "",  null, null);
	menu.addItem("ContactUs", "Contact Us", "",  null, null);



	menu.addSubItem("Home", "Home", "",  "/Home/Flash/USANEW.html", "");

	menu.addSubItem("News", "Community Events", "",  "/Announcements/Announcements.html", "");
	menu.addSubItem("News", "Atoka Military", "",  "/News/Military/military.html", "");

	menu.addSubItem("Business", "Shop and Buy", "",  "/Business/Shop-and-Buy.html", "");
	menu.addSubItem("Business", "Place Ad", "",  "/Submit/placead.html", "blank");

	menu.addSubItem("CountyInfo", "History", "",  "/CountyInfo/countyinfo.html", "");
	menu.addSubItem("CountyInfo", "Agencies", "",  "/Agencies/Agencies.html", "");
	menu.addSubItem("CountyInfo", "Schools", "",  "/Schools/Schools.html", "");
	menu.addSubItem("CountyInfo", "Churches", "",  "/Churches/Churches.html", "");
	menu.addSubItem("CountyInfo", "Utilities", "",  "/Utilities/utilities.html", "");
	menu.addSubItem("CountyInfo", "Medical / Emerg.", "",  "/Emergency/emergency.html", "");

	menu.addSubItem("Recreation", "Gotta Go...", "",  "/Recreation/Recreation.html", "");

	menu.addSubItem("PhotoAlbum", "Area", "",  "/PhotoAlbum/Area/areaphotos.html", "");
	menu.addSubItem("PhotoAlbum", "Events", "",  "/PhotoAlbum/Events/eventphotos.html", "");
	menu.addSubItem("PhotoAlbum", "Weather", "",  "/PhotoAlbum/Weather/weatherphotos.html", "");
	menu.addSubItem("PhotoAlbum", "Misc.", "",  "/PhotoAlbum/Misc/miscphotos.html", "");
	menu.addSubItem("PhotoAlbum", "Send Us a Good One!", "",  "/PhotoAlbum/submitphoto.html", "");

	menu.addSubItem("Weather", "Local Weather", "",  "http://www.wunderground.com/cgi-bin/findweather/getForecast?query=74525", "");
	menu.addSubItem("Weather", "Radar-Oklahoma", "",  "http://www.wunderground.com/radar/mixedcomposite.asp?region=c3&size=2x&type=loop", "");
	menu.addSubItem("Weather", "Radar-U.S.", "",  "http://www.wunderground.com/US/Region/US/2xpxFronts.html", "");

	menu.addSubItem("Links", "Live Feeds", "Live Feeds",  "/Links/LiveFeeds/LiveFeeds.html", "");
	menu.addSubItem("Links", "News", "News",  "/Links/News.html", "");
	menu.addSubItem("Links", "Politics", "Politics",  "/Links/Politics.html", "");
	menu.addSubItem("Links", "Sports", "Sports",  "/Links/Sports.html", "");
	menu.addSubItem("Links", "Entertainment", "Entertainment",  "/Links/Entertainment.html", "");
	menu.addSubItem("Links", "Health", "Health",  "/Links/Health.html", "");
	menu.addSubItem("Links", "Music", "Music",  "/Links/Music.html", "");
	menu.addSubItem("Links", "Games", "Games",  "/Links/Games.html", "");
	menu.addSubItem("Links", "Shopping", "Shopping",  "/Links/Shopping.html", "");
	menu.addSubItem("Links", "Giggles", "Giggles",  "/Links/Laughs.html", "");
	menu.addSubItem("Links", "Misc.", "Misc.",  "/Links/Misc.html", "");

	menu.addSubItem("ContactUs", "Contact Us", "Contact Us",  "/Contact/Contact.html", "");




	menu.showMenu();
}