var globalNavLoc;

if (globalNavLoc == null || globalNavLoc.length == 0) {globalNavLoc = "x";}

if (globalNavLoc == "text_index")
 {
   var textBottomNav = document.getElementById('textBottomNav');
   textBottomNav.innerHTML = "Text Only Version";
 }
if (globalNavLoc == "home_index")
 {
   var homeBottomNav = document.getElementById('homeBottomNav');
   homeBottomNav.innerHTML = "City of San Diego Home";
 }
if (globalNavLoc == "business_index")
 {
   var businessBottomNav = document.getElementById('businessBottomNav');
   businessBottomNav.innerHTML = "Business";
 }
if (globalNavLoc == "cityhall_index")
 {
   var cityhallBottomNav = document.getElementById('cityhallBottomNav');
   cityhallBottomNav.innerHTML = "City Hall";
 }
if (globalNavLoc == "community_index")
 {
   var communityBottomNav = document.getElementById('communityBottomNav');
   communityBottomNav.innerHTML = "Community";
 }
if (globalNavLoc == "departments_index")
 {
   var departmentsBottomNav = document.getElementById('departmentsBottomNav');
   departmentsBottomNav.innerHTML = "Departments";
 }
if (globalNavLoc == "information_index")
 {
   var informationBottomNav = document.getElementById('informationBottomNav');
   informationBottomNav.innerHTML = "Information";
 }
if (globalNavLoc == "leisure_index")
 {
   var leisureBottomNav = document.getElementById('leisureBottomNav');
   leisureBottomNav.innerHTML = "Leisure";
 }
if (globalNavLoc == "services_index")
 {
   var servicesBottomNav = document.getElementById('servicesBottomNav');
   servicesBottomNav.innerHTML = "Services A-Z";
 }
if (globalNavLoc == "visiting_index")
 {
   var visitingBottomNav = document.getElementById('visitingBottomNav');
   visitingBottomNav.innerHTML = "Visiting";
 }
if (globalNavLoc == "search_index")
 {
   var searchBottomNav = document.getElementById('searchBottomNav');
   searchBottomNav.innerHTML = "Search";
 }
if (globalNavLoc == "sitemap_index")
 {
   var sitemapBottomNav = document.getElementById('sitemapBottomNav');
   sitemapBottomNav.innerHTML = "Site Map";
 }
if (globalNavLoc == "contact_index")
 {
   var contactBottomNav = document.getElementById('contactBottomNav');
   contactBottomNav.innerHTML = "Contact the City";
 }
if (globalNavLoc == "privacy_index")
 {
   var privacyBottomNav = document.getElementById('privacyBottomNav');
   privacyBottomNav.innerHTML = "Privacy Notice";
 }
if (globalNavLoc == "disclaimers_index")
 {
   var disclaimersBottomNav = document.getElementById('disclaimersBottomNav');
   disclaimersBottomNav.innerHTML = "Disclaimers";
 }
if (globalNavLoc == "accessibility_index")
 {
   var accessibilityBottomNav = document.getElementById('accessibilityBottomNav');
   accessibilityBottomNav.innerHTML = "Accessibility";
 }


