

// ****************new topbar  navigational script******

function fravigate(section){     //(section) is the value given by the nav button.
grat=location.href.split("/fr/")           //get the current URl and split into an array.  Each array contains everything before the next "/".
        window.location=grat[0]+ section + grat[1]  //go to new URL. The [1] is the last section in the string.If the directory is modified this number will have to be changed
}

// ******************end of script*********************


