  // ----   Beginning of Script  --------

  // Start off, we want to pre-cache our images so that
  // the user can move the mouse over the link buttons and
  // see the changes much quicker.

  // Define our arrays for the buttons here..

  var sbLinkCnt = 12;
  var normButton = new Array(sbLinkCnt);
  var hiButton = new Array(sbLinkCnt);

  // Build our image arrays
  // Top of Banner

  // Button 1 - Missions and Programs
  normButton[0] = new Image;
  normButton[0].src = "img/logo_blue.gif";
  hiButton[0] = new Image;
  hiButton[0].src = "img/logo_blue_2.gif";

  normButton[1] = new Image;
  normButton[1].src = "img/contact_us_normal.gif";
  hiButton[1] = new Image;
  hiButton[1].src = "img/contact_us_over.gif";
  
  normButton[2] = new Image;
  normButton[2].src = "img/regbtnlite.gif";
  hiButton[2] = new Image;
  hiButton[2].src = "img/regbtnnorm.gif";
  
  normButton[3] = new Image;
  normButton[3].src = "img/cluebtnlite.gif";
  hiButton[3] = new Image;
  hiButton[3].src = "img/cluebtnnorm.gif";

  normButton[4] = new Image;
  normButton[4].src = "img/autobtnlite.gif";
  hiButton[4] = new Image;
  hiButton[4].src = "img/autobtnnorm.gif";

  normButton[5] = new Image;
  normButton[5].src = "img/homebtnlite.gif";
  hiButton[5] = new Image;
  hiButton[5].src = "img/homebtnnorm.gif";

  normButton[6] = new Image;
  normButton[6].src = "img/prodbtnlite.gif";
  hiButton[6] = new Image;
  hiButton[6].src = "img/prodbtnnorm.gif";

  normButton[7] = new Image;
  normButton[7].src = "img/emailbtnlite.gif";
  hiButton[7] = new Image;
  hiButton[7].src = "img/emailbtnnorm.gif";

  normButton[8] = new Image;
  normButton[8].src = "img/dn_registerlite.gif";
  hiButton[8] = new Image;
  hiButton[8].src = "img/dn_registernorm.gif";

  normButton[9] = new Image;
  normButton[9].src = "img/dn_cluelite.gif";
  hiButton[9] = new Image;
  hiButton[9].src = "img/dn_cluenorm.gif";
  
  normButton[10] = new Image;
  normButton[10].src = "img/getqbtnlite.gif";
  hiButton[10] = new Image;
  hiButton[10].src = "img/getqbtnnorm.gif";

  normButton[11] = new Image;
  normButton[11].src = "img/getlquotelite.gif";
  hiButton[11] = new Image;
  hiButton[11].src = "img/getlquotenorm.gif";

  normButton[12] = new Image;
  normButton[12].src = "img/gethquotelite.gif";
  hiButton[12] = new Image;
  hiButton[12].src = "img/gethquotenorm.gif";

  
  sbLinkCnt = 3;
  var banImg = new Array(sbLinkCnt);

  // Build our image arrays
  // Top of Banner

  // Button 1 - Missions and Programs
  banImg[0] = new Image;
  banImg[0].src = "img/picban_desert.gif";

  banImg[1] = new Image;
  banImg[1].src = "img/picban_products.gif";

  banImg[2] = new Image;
  banImg[2].src = "img/picban_autos.gif";

  banImg[3] = new Image;
  banImg[3].src = "img/picban_links.gif";


  // This function handles swaping of the images at the 
  // desired location.

  function mjr_swapImage(id, imgID){

    document.images[id].src = banImg[imgID].src;
    return true;

  }
  // This function handles swaping of the images at the 
  // desired location.

  function swapImage(id, imgID, flip){
  
    if (flip) {
      document.images[id].src = hiButton[imgID].src;
      }
    else{
      document.images[id].src = normButton[imgID].src;
     }
  
    return true;

  }

