//Top Nav bar script v2- http://www.dynamicdrive.com/dynamicindex1/sm/index.htm

function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("weatherid", "Weather", "Weather", null, null);
	menu.addItem("newsid", "News Sites", "News Sites",  null, null);
	menu.addItem("sportsid", "Sports", "Sports",  null, null);
	menu.addItem("auctionsid", "Auctions", "Auctions",  null, null);

	menu.addSubItem("weatherid", "AccuWeather.com", "AccuWeather.com",  "http://www.accuweather.com");
	menu.addSubItem("weatherid", "National Weather Service", "National Weather Service",  "http://www.nws.noaa.gov/");
	menu.addSubItem("weatherid", "News Channel 34", "News Channel 34",  "http://www.wivt.com/stormteam.asp");
	menu.addSubItem("weatherid", "Storm Tracker Weather", "Storm Tracker Weather",  "http://www.wivt.com/stormteam.asp");

	menu.addSubItem("newsid", "Fox 40", "Fox 40",  "http://www.wicz.com");
	menu.addSubItem("newsid", "News Channel 34", "News Channel 34",  "http://www.wivt.com");
	menu.addSubItem("newsid", "The Press and Sun Bulletin", "The Press and Sun Bulletin",  "http://www.pressconnects.com");
	menu.addSubItem("newsid", "WBNG TV 12", "WBNG TV 12",  "http://www.wbng.com");
	menu.addSubItem("newsid", "ABC News", "ABC News",  "http://abcnews.com");
	menu.addSubItem("newsid", "CBS News", "CBS News",  "http://www.cbsnews.com");
	menu.addSubItem("newsid", "CNN", "CNN",  "http://www.cnn.com");
	menu.addSubItem("newsid", "US News", "US News",  "http://www.usnews.com");
	menu.addSubItem("newsid", "USA Today", "USA Today",  "http://www.usatoday.com");
	menu.addSubItem("newsid", "The Washington Post", "The Washington Post",  "http://www.washingtonpost.com");
	menu.addSubItem("newsid", "The New York Times", "The New York Times",  "http://nytimes.com");
	menu.addSubItem("newsid", "CBS Market Watch", "CBS Market Watch",  "http://66.34.50.9/business/biz.html");


	menu.addSubItem("sportsid", "Southern Tier Students", "Southern Tier Students",  "http://www.tiersmart.com/info/students/index.html");
	menu.addSubItem("sportsid", "News Channel 34", "News Channel 34",  "http://www.wivt.com/sports.asp");
	menu.addSubItem("sportsid", "The Press and Sun Bulletin", "The Press and Sun Bulletin",  "http://www.pressconnects.com/today/sports/index.shtml");
	menu.addSubItem("sportsid", "WBNG TV 12", "WBNG TV 12",  "http://66.34.50.9/sports.shtml");
	menu.addSubItem("sportsid", "BU Bearcats", "BU Bearcats",  "http://athletics.binghamton.edu/");
	menu.addSubItem("sportsid", "Binghamton Mets", "Binghamton Mets",  "http://www.binghamtonmets.com/");
	menu.addSubItem("sportsid", "BC Icemen", "BC Icemen",  "http://www.bcicemen.com/");
	menu.addSubItem("sportsid", "BCC Hornets", "BCC Hornets",  "http://www.sunybroome.edu/%7Eathletics/");
	menu.addSubItem("sportsid", "Syracuse Orangemen", "Syracuse Orangemen",  "http://www.suathletics.com/index.asp");
	menu.addSubItem("sportsid", "Fox 40", "Fox 40",  "http://www.wivt.com/framesets/abcnews_frame.asp");
	menu.addSubItem("sportsid", "CBS Sports", "CBS Sports",  "http://www.cbs.sportsline.com/");
	menu.addSubItem("sportsid", "ESPN", "ESPN",  "http://www.espn.com/");
	menu.addSubItem("sportsid", "The Wire - AP", "The Wire - AP",  "http://www.wire.ap.org/");
	menu.addSubItem("sportsid", "CNN Sports Illustrated", "CNN Sports Illustrated",  "http://www.cnnsicom/");
	menu.addSubItem("sportsid", "NFL.com", "NFL.com",  "http://www.nfl.com/");
	menu.addSubItem("sportsid", "NBA.com", "NBA.com",  "http://www.nba.com/");
	menu.addSubItem("sportsid", "MLB.com", "MLB.com",  "http://www.mlb.com/");

	menu.addSubItem("auctionsid", "ibuyauction.com", "ibuyauction",  "http://www.ibuyauction.com/");
	menu.addSubItem("auctionsid", "Yahoo Auctions", "Yahoo Auctions",  "http://www.yahoo.com/");
	menu.addSubItem("auctionsid", "Auction Guide", "Auction Guide",  "http://www.auctionguide.com/");
	menu.addSubItem("auctionsid", "Ebay", "Ebay",  "http://www.ebay.com/");

	menu.showMenu();
}