// JavaScript Document

//this file contains the data necessary to creat the sidenav and the crumbtrails for pages in this section
//it contains two elements: 
//1. the section title stored in the variable sideNavTitle
//2. page titles, links to, and paths to, that page contained in the array sideNavData

//the array sideNavData has a particular structure. For each and every page in the section there are three entires in the array:
//1. the page title (followed by a comma).
//2. the link to that page (relative to the root directory and followed by a comma).
//3. and the 'path' to that page.  this is the 'navigation' path not the file path. in other words, what pages higher in the navigation structure do you go through to get to this page.  When there is more than one, each is seperated from the next by a '/'.  and as with the other two entries, it is followed by a comma.

//PLEASE NOTE: The very last entry in the array is not followed by a comma.

var sideNavTitle = "Participation";

var sideNavData = new Array(
"Overview","/participation/participationoverview.html","",
"Parents","/participation/parents.html","",
"Events Overview","/participation/parents/eventsoverview.html","Parents",
"Speaker Series","/participation/parents/speakerseries.html","Parents",
"Support","/participation/support.html","",
"Ways of Giving","/participation/support/waysofgiving.html","Support",
"Alumni","/participation/alumni.html","",
"Communications","/participation/communications.html","",
"Current Events","/participation/communications/currentevents.html","Communications",
"eStore","/participation/estore.html",""
);
