var version = "1.0.1";
var updated = "05/12/2006";

// # of Navigation Buttons
var NUM_BUTTONS = 9

function load()
{

   var temp = new Array(NUM_BUTTONS);
   
   for(x = 1; x <= NUM_BUTTONS; x++)
   {
      document.getElementById("but" + x).src = "img/but" + x + ".jpg";
      temp[x] = new Image();
   }

   for(x = 1; x <= NUM_BUTTONS; x++)
   {
      temp[x].src = "img/but" + x + "a.jpg";
   }
}

function over(source)
{
   document.getElementById("but" + source).src = "img/but" + source + "a.jpg";
}

function out(source)
{
   document.getElementById("but" + source).src = "img/but" + source + ".jpg";
}


