//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("homeid", "Anywhere on this black bar is Home", "Anywhere on this black bar is Home", "http:/www.erols.com/", null);
	menu.addItem("pollid", "Poll", "Poll",  null, null);
	menu.addItem("navid", "Poll Navigation", "Poll Navigation",  null, null);
	menu.addItem("miscid", "Misc Info", "Misc Info",  null, null);
	menu.addItem("searchengineid", "Search Engines", "Search Engines",  null, null);
	menu.addItem("otherid", "Other", "Other",  null, null);
	menu.addItem("voteid", "Vote", "Vote", null, null);

	menu.addSubItem("pollid", "Weekly Results", "Weekly Results",  "http://www.erols.com/futura/week.html");
	menu.addSubItem("pollid", "Monthly Poll", "Monthly Poll",  "http://users.erols.com/futura/sexy.htm");
	menu.addSubItem("pollid", "Quick-finder Text List", "Quick-finder Text List",  "http://users.erols.com/futura/sexytxt.htm");

	menu.addSubItem("navid", "1-20", "1-20",  "http://users.erols.com/futura/sexy.htm");
	menu.addSubItem("navid", "21-40", "21-40",  "http://users.erols.com/futura/sexy21-40.htm");
	menu.addSubItem("navid", "41-60", "41-60",  "http://users.erols.com/futura/sexy41-60.htm");
	menu.addSubItem("navid", "61-80", "61-80",  "http://users.erols.com/futura/sexy61-80.htm");
	menu.addSubItem("navid", "81-100", "81-100",  "http://users.erols.com/futura/sexy81-100.htm");
	menu.addSubItem("navid", "101-120", "101-120",  "http://users.erols.com/futura/sexy101-120.htm");
	menu.addSubItem("navid", "121-140", "121-140",  "http://users.erols.com/futura/sexy121-140.htm");
	menu.addSubItem("navid", "141-160", "141-160",  "http://users.erols.com/futura/sexy141-160.htm");
	menu.addSubItem("navid", "161-180", "161-180",  "http://users.erols.com/futura/sexy161-180.htm");
	menu.addSubItem("navid", "181-200", "181-200",  "http://users.erols.com/futura/sexy181-200.htm");

	menu.addSubItem("miscid", "For Beginners", "For Beginners",  "http://users.erols.com/futura/sexyinfo.html");
	menu.addSubItem("miscid", "FAQ", "FAQ",  "http://users.erols.com/futura/faq.htm");

	menu.addSubItem("searchengineid", "Yahoo", "Yahoo",  "http://www.yahoo.com/");
	menu.addSubItem("searchengineid", "Google", "Google",  "http://www.google.com/");
	menu.addSubItem("searchengineid", "Excite", "Excite", "http://www.excite.com");
	menu.addSubItem("searchengineid", "HotBot", "HotBot",  "http://www.hotbot.com");
	menu.addSubItem("searchengineid", "AltaVista", "AltaVista",  "http://www.altavista.com/");
	menu.addSubItem("searchengineid", "Mamma - the Mother of all search engines", "Mamma",  "http://mamma51.mamma.com/");


	menu.addSubItem("otherid", "Cnet", "Cnet",  "http://www.cnet.com/");
	menu.addSubItem("otherid", "RealAudio", "RealAudio",  "http://www.realaudio.com/");
	menu.addSubItem("otherid", "MP3.com", "MP3.com",  "http://www.mp3.com/");

	menu.addSubItem("voteid", "VOTE NOW", "VOTE NOW",  "mailto:futura@erols.com");

	menu.showMenu();
}