////////////////////////////////////////////////////////////////////////////////
// PURPOSE OF THIS FILE                                                       //
//                                                                            //
// Contains data to generate navigation buttons, dropdown menus and           //
// "breadcrumb trail" in all PBC website pages. May be updated                //
// intermittently - simply duplicate and modify an existing line.             //
//                                                                            //
// Folder and file name specifications:                                       //
// * Use lower case letters only                                              //
// * Do not use any spaces                                                    //
// * No punctuation characters (other than a dot before the file name suffix) //
//   - but an underscore is acceptable if you must.                           //
// * Every link in a dropdown menu must point to an address that is in a      //
//   top-level folder (as used by the navigation buttons).                    //
// * No two folders can have the same name, even if they are subfolders of    //
//   different top-level folders. (This is a requirement for the automatic    //
//   breadcrumbs.)                                                            //
//                                                                            //
//  There is automatic validation to check for the above occurrences: you     //
//  will be warned (nicely) if these specifications are not met.              //
//                                                                            //
// Neville Whitlock and Lisa Martell                                          //
// Website developers                                                         //
// June 2007 and following                                                    //
////////////////////////////////////////////////////////////////////////////////


//==============================================================================
// NAVIGATION BUTTONS: ADD A LINE FOR EACH NEW BUTTON
// Buttons with no submenu: first entry is "xxxx.html" (i.e. target page)
// Buttons with submenu: first entry is "xxxx" (i.e. folder name)

//                     Folder name   Words that appear on button
//                     ===========   ===========================
var buttons = new Array();
buttons.push(new Array("index.html", "Home"                  ));
buttons.push(new Array("whychurch",  "Why Church?"           ));
buttons.push(new Array("connect",    "Get connected"         ));
buttons.push(new Array("sundays",    "On Sundays"            ));
buttons.push(new Array("youth",      "Youth"                 ));
buttons.push(new Array("about",      "About us"              ));
buttons.push(new Array("find",       "Find us"               ));
buttons.push(new Array("links",      "Links"                 ));



//==============================================================================
// DROPDOWN MENUS: ADD A LINE FOR EACH NEW MENU ENTRY
// Folder name determines in which menu the item will appear
// More than one level of folder is okay - e.g. "folder1/folder2/filename.html"

//                   Folder name(s) and file name     Words that appear in menu
//                   ============================     =========================
var menus = new Array();
menus.push(new Array("whychurch/whygod.html",         "Why God?"            ));
menus.push(new Array("whychurch/stories/index.html",  "Our stories"         ));
menus.push(new Array("whychurch/faq.html",            "FAQ"                 ));
menus.push(new Array("whychurch/tellmemore.html",     "Tell me more"        ));
menus.push(new Array("connect/upcoming.html",         "Upcoming events"     ));
menus.push(new Array("connect/mainlymusic.html",      "Mainly Music"        ));
menus.push(new Array("connect/cycling.html",          "Cycling"             ));
menus.push(new Array("connect/craft.html",            "Craft"               ));  
menus.push(new Array("connect/movie.html",            "Movie Group"         )); 
menus.push(new Array("connect/eag.html",              "Green Team"          ));
menus.push(new Array("connect/homegroups.html",       "Home groups"         ));
menus.push(new Array("connect/photoalbum.html",       "Photo Album"         ));
menus.push(new Array("youth/youth.html",              "Whats Up?"           ));
menus.push(new Array("youth/seasons.html",            "Seasons"             ));
menus.push(new Array("sundays/expect.html",           "What to expect"      ));
menus.push(new Array("sundays/kids.html",             "Kids too!"           ));
menus.push(new Array("sundays/connections.html",      "Upcoming talks"      ));
menus.push(new Array("sundays/messages.html",         "Audio"               ));
menus.push(new Array("about/who.html",   		 "Who is who"       ));
menus.push(new Array("about/join.html",               "Join in"             ));
menus.push(new Array("about/history.html",            "Our history"         ));
menus.push(new Array("links/partners.html",           "Our partners"        ));
menus.push(new Array("links/otherchurches.html",      "Local Churches"      ));
menus.push(new Array("find/index.html",               "Contact Us"          ));
menus.push(new Array("find/map.html",                 "Map"                 ));



//==============================================================================
// BREADCRUMBS: ADD A LINE WHENEVER A NEW FOLDER IS CREATED
// No two folders can have same name - not even subfolders of different top level folders

//                     Folder name        Words that appear in breadcrumb
//                    ==============     ===============================
var crumbs = new Array();
crumbs.push(new Array("about",           "About us"                  ));
crumbs.push(new Array("connect",         "Get connected"             ));
crumbs.push(new Array("stories",         "Our Stories"               ));
crumbs.push(new Array("find",            "Find us"                   ));
crumbs.push(new Array("links",           "Links"                     ));
crumbs.push(new Array("sundays",         "On Sundays"                ));
crumbs.push(new Array("whychurch",       "Why Church?"               ));
crumbs.push(new Array("youth",           "Youth"                     ));

//==============================================================================

