
//**************************************
//* This script changes the preloads all
//* the global navbar images.
//**************************************

{
  homeon = new Image(120,28);
  homeon.src = "/images/home2.gif";
  homeoff = new Image(120,28);
  homeoff.src = "/images/home1.gif";
  
  aboutuson = new Image(120,28);
  aboutuson.src = "/images/aboutus2.gif";
  aboutusoff = new Image(120,28);
  aboutusoff.src = "/images/aboutus1.gif";
  
  careerson = new Image(120,28);
  careerson.src = "/images/careers2.gif";
  careersoff = new Image(120,28);
  careersoff.src = "/images/careers1.gif";
  
  foundationon = new Image(120,28);
  foundationon.src = "/images/foundation2.gif";
  foundationoff = new Image(120,28);
  foundationoff.src = "/images/foundation1.gif";
  
  linkson = new Image(120,28);
  linkson.src = "/images/links2.gif";
  linksoff = new Image(120,28);
  linksoff.src = "/images/links1.gif";
  
  contactuson = new Image(120,28);
  contactuson.src = "/images/contactus2.gif";
  contactusoff = new Image(120,28);
  contactusoff.src = "/images/contactus1.gif";
}


//**************************************
//* This script changes the state of the
//* menu buttons. The four different
//* states are Off, Up, Down and Chosen.
//**************************************

function switchImage(imageID, imageNew)
{
  document.images[imageID].src = eval(imageNew + ".src");
}
function imgSwap(img, state)
{
  document.images[img].src = eval(img + state + ".src");
}
