// JavaScript Document

// This function is to change the labels to green to reflect the loaction of the page to give a kind of "breadcrunb trail"

//  on the web page two variables are set by wayfinder
// var swapParent = 'main3'; // this gives the parent folder for the page
// var swapChild = 'child2'; // this gives the current page


function changeTitleHome(){
document.getElementById(swapParent).className = "navOptionThis";
}// end function

function changeTitleAll(){
document.getElementById(swapParent).className = "navOptionThis";
document.getElementById(swapChild).className = "secondNavOptionThis";
}// end function


