// Used to preload the rollover images
// To update change the # in var aryImages = new Array(15); to the new image count
// And them add them to the new array

  var aryImages = new Array(17);

  aryImages[0] = "images/bg.jpg";
  aryImages[1] = "images/aboutUs_over.jpg";
  aryImages[2] = "images/giftShop_over.jpg";  
  aryImages[3] = "images/giving_over.jpg";
  aryImages[4] = "images/home_over.jpg";
  aryImages[5] = "images/music_over.jpg";    
  aryImages[6] = "images/sacraments_over.jpg";
  aryImages[7] = "images/eventsCenter_over.jpg";  
  aryImages[8] = "images/aboutUs_home.jpg";
  aryImages[9] = "images/giftShop_home.jpg";  
  aryImages[10] = "images/giving_home.jpg";
  aryImages[11] = "images/home_home.jpg";
  aryImages[12] = "images/music_home.jpg";    
  aryImages[13] = "images/sacraments_home.jpg";
  aryImages[14] = "images/eventsCenter_home.jpg";
  aryImages[15] = "images/espanolRollOver.gif";    
  aryImages[16] = "images/filipinoRollOver.gif";
  
  for (i=0; i < aryImages.length; i++) {
    var preload = new Image();
    preload.src = aryImages[i];
  }

