function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("player", "Radio Players", "Radio Players",  null, null);
	menu.addItem("go", "Antarctica", "Antarctica",  null, null);
        menu.addItem("newsid", "News Sites", "News Sites",  null, null);
	menu.addItem("downloadid", "Free Downloads", "Free Downloads",  null, null);
	menu.addItem("searchengineid", "Search Engines", "Search Engines",  null, null);
	menu.addItem("miscid", "Miscellaneous", "Miscellaneous",  null, null);

	menu.addSubItem("player", "RealAudio", "RealAudio",  "http://www.realaudio.com/");
	menu.addSubItem("player", "MP3.com", "MP3.com",  "http://www.mp3.com/");
	menu.addSubItem("player", "Media Player", "Media Player", "http://www.microsoft.com/windows/mediaplayer/en/download/");
	menu.addSubItem("player", "IQ 3D", "IQ 3D", "https://www.qsound.com/secure/purchase.asp?aid=10105&pid=4881");
        menu.addSubItem("player", "Audioactive", "Audioactive", "http://www.audioactive.com/");
        menu.addSubItem("player", "Streamworks", "Streamworks", "http://www.xingtech.com/support/downloads/swplayer/");
        menu.addSubItem("player", "Winamp", "Winamp", "http://www.winamp.com/");
        menu.addSubItem("player", "Radio Destiny", "Radio Destiny", "http://www.radiodestiny.com/");


menu.addSubItem("go", "Weather", "Weather",  "http://www.spole.gov/~watcher/uptomin.htm");
menu.addSubItem("go", "Travel", "Travel",  "http://www.lonelyplanet.com/dest/ant/ant.htm");
menu.addSubItem("go", "Links", "Links",  "http://penguincentral.com/antarctica.html");
menu.addSubItem("go", "The Ice Org", "The Ice Org",  "http://www.theice.org/");
menu.addSubItem("go", "Palmer Station", "Palmer Station",  "http://www.crseo.ucsb.edu/lter/lter.html");

menu.addSubItem("newsid", "CNN", "CNN",  "http://www.cnn.com");
	menu.addSubItem("newsid", "ABC News", "ABC News",  "http://www.abcnews.com");
	menu.addSubItem("newsid", "MSNBC", "MSNBC",  "http://www.msnbc.com");
	menu.addSubItem("newsid", "CBS news", "CBS News",  "http://www.cbsnews.com");
	menu.addSubItem("newsid", "News.com", "News.com",  "http://news.com");
	

      menu.addSubItem("downloadid", "Jumbo", "Jumbo",  "http://www.jumbo.com/");
	menu.addSubItem("downloadid", "Tucows", "Tucows",  "http://tucows.com/");
      menu.addSubItem("downloadid", "WinFiles.com", "WinFiles.com",  "http://winfiles.com/");

	menu.addSubItem("searchengineid", "Yahoo", "Yahoo",  "http://www.yahoo.com/");
	menu.addSubItem("searchengineid", "Infoseek", "Infoseek",  "http://www.infoseek.com/");
	menu.addSubItem("searchengineid", "Excite", "Excite", "http://www.excite.com");
	menu.addSubItem("searchengineid", "HotBot", "HotBot",  "http://www.hotbot.com");

	menu.addSubItem("miscid", "Hitbox.com", "Hitbox.com",  "http://www.hitbox.com/");
	menu.addSubItem("miscid", "Cnet", "Cnet",  "http://www.cnet.com/");
	menu.addSubItem("miscid", "Andover.net", "Andover.net",  "http://www.andover.net/");

	menu.showMenu();
}