<!--
function shownav(f){

// set variables

// separate_way = "separate_way"
// separate_two = "separate_two"
// separate_river = "separate_river"

way_flash_t = document.getElementById("way_flash").style;
two_flash_t = document.getElementById("two_flash").style;

separate_way_t = document.getElementById("way").style;
separate_two_t = document.getElementById("two").style;

bar1_t = document.getElementById("bar1").style;
footer_t = document.getElementById("footer").style;

nav_way_t = document.getElementById("nav_way").style;
nav_two_t = document.getElementById("nav_two").style;


footer_t = document.getElementById("footer").style;

home_way_t = document.getElementById("home_way").style;
home_two_t = document.getElementById("home_two").style;


// Choose Pictures src and text 23 pics

if (f== "way") {
way_flash_t.display = "block";
two_flash_t.display = "none";


separate_way_t.borderBottomWidth = 0+"px";
separate_two_t.borderBottomWidth = 1+"px";


bar1_t.backgroundColor = "#0E2D8A"; 
footer_t.backgroundColor = "#0E2D8A"; 

nav_way_t.display = "block";
nav_two_t.display = "none";


footer_t.color = "#ffffff"; 

home_way_t.display = "block";
home_two_t.display = "none";

}

if (f== "two") {
way_flash_t.display = "none";
two_flash_t.display = "block";


separate_way_t.borderBottomWidth = 1+"px";
separate_two_t.borderBottomWidth = 0+"px";


bar1_t.backgroundColor = "#048856"; 
footer_t.backgroundColor = "#048856"; 

nav_way_t.display = "none";
nav_two_t.display = "block";


footer_t.color = "#ffffff"; 

home_way_t.display = "none";
home_two_t.display = "block";

}

if (f== "river") {
way_flash_t.display = "none";
two_flash_t.display = "none";


separate_way_t.borderBottomWidth = 1+"px";
separate_two_t.borderBottomWidth = 1+"px";


bar1_t.backgroundColor = "#EAAC56"; 
footer_t.backgroundColor = "#EAAC56"; 

nav_way_t.display = "none";
nav_two_t.display = "none";

footer_t.color = "#000000"; 

home_way_t.display = "none";
home_two_t.display = "none";

}
}

-->