function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("linksid", "Links", "Visit some of our Links",  null, null);
	menu.addItem("picsid", "Pictures", "Pictures",  null, null);
	menu.addItem("memberid", "Membership", "Member Info",  null, null);
	menu.addItem("historyid", "History", "Some Knowledge of the Fraternity",  null, null);
	menu.addItem("alumid", "Alumni Info", "Alumni News",  null, null);
	menu.addItem("miscid", "Miscellaneous", "Miscellaneous",  null, null);
	menu.addItem("calender", "Calendar", "Calendar of Events",  null, null);
		
        menu.addSubItem("linksid", "National Website", "International Lambda Chi Alpha",  "http://www.lambdachi.org");
		menu.addSubItem("linksid", "Polytechnic University", "POLY!!!!",  "http://www.poly.edu");
		menu.addSubItem("linksid", "Home Page", "Back to Home Page",  "http://acm.poly.edu/~lambda");



	menu.addSubItem("picsid", "Barbeque at the house", "Rush Barbeque",  "Bbq.htm");
	menu.addSubItem("picsid", "September Party", "fiesta",  "September2000Jam.htm");
	menu.addSubItem("picsid", "Formal Dinner", "Dinner during living week",  "FormalDinner.htm");
	menu.addSubItem("picsid", "Trip to Renselar Polytechnic Institute", "Initiation_Week@RPI",  "RPI.htm");	
	menu.addSubItem("picsid", "ACE Party", "Alpha Chi Epsilon's Party",  "ACE_party.htm");
	menu.addSubItem("picsid", "Hangout with Kappa Phi Lambda", "Fun and laughs with the girls from St. Johns",  "kappaphilambda.htm");
	menu.addSubItem("picsid", "Thanksgiving with the Fire Dept.", "Food for the Local Fire Dept.",  "Thanksgiving.htm");
	menu.addSubItem("picsid", "Initiation Dinner", "Food with the Lambda Boyz",  "dinner.htm");
	menu.addSubItem("picsid", "Founders Day Celebration", "ALUMNI AND ACTIVES",  "foundersday.htm");
	menu.addSubItem("picsid", "Spring 02 Intiation", "Dinner",  "Spring02/5-24-02.htm");
	menu.addSubItem("picsid", "Fall 02 Rush BBQ", "Barbeque at the house",  "rush2002.html");
	menu.addSubItem("picsid", "Initiation of 2002", "Class of 2002",  "initiation2002.html");	
	menu.addSubItem("picsid", "Founder's Day Spring 2004", "Founder's Day",  "/Foundersdayspring2004/index.htm");



		menu.addSubItem("memberid", "Active Members", "Membership Directory",  "actives.html");
		menu.addSubItem("memberid", "High Zeta", "Officers",  "officers.html");
    	menu.addSubItem("memberid", "House Assignments", "Actives Assignments", "houseassign.html");
		menu.addSubItem("memberid", "House Corp. Officers", "Official House Corporation Officers",  "housecorp.html");
   		menu.addSubItem("memberid", "Big Brother List", "List of Bif Brothers",  "bigbrolist.html");
		menu.addSubItem("memberid", "BROTHERS ONLY!!!", "ENTRANCE SYMBOL",  "javascript:brothersOnly()");
   	
   
	menu.addSubItem("historyid", "Symbols", "Symbols of the Fraternity",  "symbols.html");
    menu.addSubItem("historyid", "Mission Statement", "What we strive for",  "mission.html");
	menu.addSubItem("historyid", "Creed", "Creed",  "creed.html");
	menu.addSubItem("historyid", "TimeLine", "1909-1929",  "http://www.lambdachi.org/fraternity/history/");
	menu.addSubItem("historyid", "Blue Book", "Summary of The Blue Book",  "bluebook.html");        

		menu.addSubItem("alumid", "State of Affairs 2/10/04 ", "Lambda Chi's Potential",  "02.10.04_State_of_Affairs.doc");
		menu.addSubItem("alumid", "Spring 2004 Newsletter", "Alumni Newsletter",  "36_Sidney_Chronicle_rev(4-24-04).pdf");
	
		menu.addSubItem("miscid", "Directions", "Directions to the house",  "directions.html");
	menu.addSubItem("miscid", "Party Info", "Party Information",  "partyinfo.html");
    menu.addSubItem("miscid", "Service & Philantrophy", "Helping out the community",  "beta.html");
    menu.addSubItem("miscid", "Letter to Parents", "",  "parents.html");
	menu.addSubItem("miscid", "GuestBook", "Tell us What U Think",  "http://www.lpage.com/wgb/wgbsign.dbm?owner=LambdaChiAplha");
	
	menu.addSubItem("calender", "Calendar of Events", "Calendar of Events",  "Calender/September2004.html");
	

	menu.showMenu();
}