// this function runs the mouseover color changes in the top nav
function togglecolors(id){
  if (document.all){
    if (document.all[id].style.background == "#9FE0FF"){
      document.all[id].style.background = "#990000" ;
    } else if (document.all[id].style.background == "#990000" ){
      document.all[id].style.background = "#9FE0FF" ;
    }
  } else if (document.getElementById){
    if(document.getElementById(id).style.background == "#9FE0FF" ){
      document.getElementById(id).style.background = "#0099cc" ;
    } else if (document.getElementById(id).style.background == "#003399" ){
      document.getElementById(id).style.background = "#0099cc" ;
    }
  }
}

// switches text in the info-bar to whatever's in 
// the variable text[textno] as defined in the body
function showtext(textno){
  if (document.all){
    document.all.bar.innerHTML = text[textno];
  } else if (document.getElementById&&!document.all) {
    document.getElementById.bar.innerHTML = text[textno]
  } 
}

// switches text in the info-bar back to the default
function resettext() {
  if (document.all){
     document.all.bar.innerHTML = 'Welcome to Brantley &amp; Brantley Adjusters, Inc. Online.';
  } else if (document.getElementById) {
    document.getElementById.bar.innerHTML = 'Welcome to Brantley &amp; Brantley Adjusters, Inc. Online.';
  }
}