function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("homeid", "Home", "Home",  "index.html", null);
	menu.addItem("rushid", "RUSH PIKE", "RUSH PIKE",  null, null);
	menu.addItem("betazetaid", "Beta Zeta", "Beta Zeta",  null, null);
	menu.addItem("partyid", "Parties", "Parties",  null, null);
	menu.addItem("nationalid", "National", "National",  null, null);

	
	

	menu.addSubItem("rushid", "About Rush", "About Rush",  "rush.html");
	menu.addSubItem("rushid", "Sign Up", "Sign Up",  "rushform.htm");
	
	
	menu.addSubItem("betazetaid", "Chapter", "Chapter",  "chapter.html");
	menu.addSubItem("betazetaid", "Fireman's Update", "Fireman's Update",  "firemen.html");
	menu.addSubItem("betazetaid", "Phone List", "Phone List", "phonelist.html");
	menu.addSubItem("betazetaid", "Calendar", "Calendar",  "calendar.html");
	menu.addSubItem("betazetaid", "Intramurals", "Intramurals",  "intramurals.html");
	menu.addSubItem("betazetaid", "Philanthropy", "Philanthropy",  "philanthropy.html");
	menu.addSubItem("betazetaid", "News", "News",  "news.html");


	menu.addSubItem("partyid", "Schedule", "Schedule",  "social.html");
	menu.addSubItem("partyid", "High School Heros", "High School Heros",  "highschool.html");
        menu.addSubItem("partyid", "Margaritaville", "Margaritaville",  "marg.html");
	menu.addSubItem("partyid", "Tailgates", "Tailgates",  "tailgate.html");
        menu.addSubItem("partyid", "Shrimpfest", "Shrimpfest",  "shrimpfest.html");
	menu.addSubItem("partyid", "Crush", "Crush",  "crush.html");
	menu.addSubItem("partyid", "Marriage & Divorce", "Marriage & Divorce",  "marrigeanddivorce.html");
	menu.addSubItem("partyid", "Pikes Peak", "Pikes Peak",  "pikespeak.html");
	menu.addSubItem("partyid", "Spring Break", "Spring Break",  "springbreak.html");
	menu.addSubItem("partyid", "Miscellaneous", "Miscellaneous",  "misc.html");


	

	menu.addSubItem("nationalid", "History", "History",  "history.html");
	menu.addSubItem("nationalid", "Nationals", "Nationals",  "http://www.pka.com");
	

	menu.showMenu();
}