


///////////////////////////////////////////////////////////////////
// *** FOLLOW THESE INSTRUCTIONS BEFORE MODIFYING THIS FILE! *** //
///////////////////////////////////////////////////////////////////
//
// 1. ALWAYS make a backup copy of this file before you modify it 
//
// 2. This file adds additional links to the horizontal links menu on every page.
//
// 3. Every Menu Item must have an item and at least one 
//
// 4. Punctuation is VERY VERY important.  Follow the example of the links that already exist.  Follow them EXACTLY.  If you receive errors after modifying, it is very likely because your syntax (your punctuation) is wrong.  Check commas, semicolons, and quotation marks especially. 
//
// 5. If you want to add a comment to this file, put // at the first of the line, as is being done for these instructions.
//
// 6. MAKE SURE YOU KNOW WHAT YOU'RE DOING BEFORE YOU MAKE CHANGES.  Study the text, find the pattern, try to understand what's going on.
//
// 7. To add new links:
//
// 	  i) Scroll to the very bottom of the page.  
//
//	  ii) COPY any two lines that begin "menu.AddItem" and "menu.AddSubItem"
//
//	  iii) PASTE those lines BELOW the last such lines and ABOVE the line that reads "menu.showMenu();" 
//
//	  iv) Both of your new lines must be changed to match your new link.  
//
//	  v) There are five parameters for each line, each separated by changed.
//
//	  vi) In the line beginning "menu.AddItem" change the first three parameters to the name of your link and leave the last two parameters "null"
//
//	  vii) In the line beginning "menu.AddSubItem" change the first parameter to the same name as your link in the "menu.AddItem" line; change the next two parameters to the name of your subitem link name; change the fourth parameter to the filename of the page that is associated with that link name; leave the fifth parameter "null" 
//
//
// 8. To delete links, EITHER 
//
// 	  i) delete the corresponding line, OR
//
//	  ii) add comment tags (//) to the beginning of the corresponding line
//
//
/////////////////////////////////////////////////////////////////




























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

	menu = new Menu();
	
	menu.addItem("Home", "Home", "Home",  null, null);
		menu.addSubItem("Home", "Home", "Home", "index.html");	
	menu.addItem("About", "About", "about",  null, null);
		menu.addSubItem("About", "About_Us", "About_Us",  "about_us.html");
		menu.addSubItem("About", "History", "History",  "history.html");
		menu.addSubItem("About", "Polices", "Polices",  "policies.html");
		menu.addSubItem("About", "Articles", "Articles",  "articles.html");
	menu.addItem("Schedule", "Schedule", "Schedule",  null, null);
		menu.addSubItem("Schedule", "Schedule", "Schedule", "schedule.html", null);
	menu.addItem("Volunteers", "Volunteers", "Volunteers",  null, null);
		menu.addSubItem("Volunteers", "Volunteers", "Volunteers",  "volunteers.html");
		menu.addSubItem("Volunteers", "Tasks & Jobs", "Tasks & Jobs",  "tasks.html");
    	menu.addSubItem("Volunteers", "Information for Programs", "programs", "information.html");
		menu.addSubItem("Volunteers", "Committees", "committees",  "committees.html");
	menu.addItem("Services", "Services", "Services",  null, null);
		menu.addSubItem("Services", "Services", "Services",  "services.html");
		//menu.addSubItem("Services", "Community Bulletins", "Community Bulletins",  "bulletins.html");
		//menu.addSubItem("Services", "Radio Station cafe", " Radio Station cafe", "cafe.html");
	menu.addItem("Members", "Members", "Members",  null, null);
		menu.addSubItem("Members", "Members", "Members",  "members.html");
		menu.addSubItem("Members", "How to Become a member", " How to Become a member",  "b_member.html");
		menu.addSubItem("Members", "Member ship card", "Member ship card Program",  "ship_card.html");
		menu.addSubItem("Members", "Fund drive information", "Fund drive information",  "drive.html");
	menu.addItem("Staff", "Staff", "Staff",  null, null);
		menu.addSubItem("Staff", "About staff", "About staff",  "staff.html");
		menu.addSubItem("Staff", "co-op radio board", "co-op radio board", "board.html");
 		menu.addSubItem("Staff", "Board Minutes", "Board Minutes",  "minutes.html");
 		menu.addSubItem("Staff", "Meeting Schedules", "Meeting Schedules",  "schedules.html");
	menu.addItem("Support", "Support", "Support",  null, null);
		menu.addSubItem("Support", "Support", "Support",  "support.html");
		menu.addSubItem("Support", "Sponsorship", "Sponsorship",  "sponsorship.html");
	menu.addItem("Listen", "Listen", "Listen",  null, null);
		menu.addSubItem("Listen", "Listen", "Listen",  "listen.html", null);
		menu.addSubItem("Listen", "Cable", "Cable",  "cable.html", null);
	menu.addItem("Contact", "Contact", "Contact",  null, null);
		menu.addSubItem("Contact", "Contact", "Contact",  "contact.html", null);
	
	menu.showMenu();
}
