// 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 = "Learning at MP&MS";

var sideNavData = new Array(
"Our Program","/learning/program.html","",
"Curriculum","/learning/program/curriculum.html","Our Program",
"Math","/learning/program/curriculum/math.html","Our Program/Curriculum",
"English/Language Arts","/learning/program/curriculum/english.html","Our Program/Curriculum",
"Science","/learning/program/curriculum/science.html","Our Program/Curriculum",
"History/Social Studies","/learning/program/curriculum/history.html","Our Program/Curriculum",
"Spanish","/learning/program/curriculum/spanish.html","Our Program/Curriculum",
"Art","/learning/program/curriculum/art.html","Our Program/Curriculum",
"Music","/learning/program/curriculum/music.html","Our Program/Curriculum",
"Drama","/learning/program/curriculum/drama.html","Our Program/Curriculum",
"Physical Education","/learning/program/curriculum/pe.html","Our Program/Curriculum",
"Projects Lab","/learning/program/curriculum/lab.html","Our Program/Curriculum",
"Outdoor Education Center","/learning/program/curriculum/oec.html","Our Program/Curriculum",
"Technology","/learning/program/curriculum/technology.html","Our Program/Curriculum",
"Preschool","/learning/program/preschool.html","Our Program",
"Preschool Program","/learning/program/preschool/preschoolprogram.html","Our Program/Preschool",
"Preschool Life","/learning/program/preschool/preschoollife.html","Our Program/Preschool Life",
"Primary School","/learning/program/primaryschool.html","Our Program",
"Primary School Program","/learning/program/primaryschool/primaryschoolprogram.html","Our Program/Primary School",
"Primary School Life","/learning/program/primaryschool/primaryschoollife.html","Our Program/Primary School Life",
"Middle School","/learning/program/middleschool.html","Our Program",
"Middle School Program","/learning/program/middleschool/middleschoolprogram.html","Our Program/Middle School",
"Middle School Life","/learning/program/middleschool/middleschoollife.html","Our Program/Middle School Life",
"Arts","/learning/program/arts.html","Our Program",
"Athletics &amp; After School Sports","/learning/program/athletics.html","Our Program",
"Outdoor Education Center &amp; Garden","/learning/program/oec.html","Our Program",
"Field Trips &amp; Outdoor Adventures","/learning/program/fieldtrips.html","Our Program",
"Learning Resources Center","/learning/program/lrc.html","Our Program",
"Library Media Center","/learning/program/lmc.html","Our Program",
"After School","/learning/program/afterschool.html","Our Program",
"After School Drama","/learning/program/afterschool/afterschooldrama.html","Our Program/After School",
"Summer Camp","/learning/program/summercamp.html","Our Program"
);