////
//// support code for Harpswell Foundation interior pages
////

//
// required:
//   jquery.js (version 1.2.6+) (see jquery.com)
//   jquery.preloadimages.js
//


// The following photos are candidates to appear randomly at the top of interior pages.
//  -add new photos to /img/photos/gallery and to list below (photos should be 193x145 pixels)
//  -comment out lines for any photos that you don't wish to appear at top of interior pages

photos = new Array();
photos[photos.length] = "/img/photos/gallery/3Women.jpg";
// photos[photos.length] = "/img/photos/gallery/AlanAandVeasna.jpg";
// photos[photos.length] = "/img/photos/gallery/AlanAndOknah.jpg";
photos[photos.length] = "/img/photos/gallery/AlanAndSon.jpg";
//photos[photos.length] = "/img/photos/gallery/AlanAndVanna.jpg";
photos[photos.length] = "/img/photos/gallery/AngkorWat.jpg";
photos[photos.length] = "/img/photos/gallery/AngkorWat2.jpg";
photos[photos.length] = "/img/photos/gallery/Apsara.jpg";
photos[photos.length] = "/img/photos/gallery/Bedroom.jpg";
photos[photos.length] = "/img/photos/gallery/BlessingDormSite.jpg";
photos[photos.length] = "/img/photos/gallery/BophaAndKalyan.jpg";
photos[photos.length] = "/img/photos/gallery/Building.jpg";
photos[photos.length] = "/img/photos/gallery/ChildrenAndFlags.jpg";
photos[photos.length] = "/img/photos/gallery/Classroom.jpg";
photos[photos.length] = "/img/photos/gallery/computer.jpg";
photos[photos.length] = "/img/photos/gallery/Cooking2.jpg";
photos[photos.length] = "/img/photos/gallery/Courtyard.jpg";
// photos[photos.length] = "/img/photos/gallery/DaryAndFred.jpg";
photos[photos.length] = "/img/photos/gallery/Dorm-2-10.jpg";
photos[photos.length] = "/img/photos/gallery/DormGirls.jpg";
photos[photos.length] = "/img/photos/gallery/Alan&Vanna.jpg";
photos[photos.length] = "/img/photos/gallery/Ontheroad1.jpg";
photos[photos.length] = "/img/photos/gallery/Ontheroad2.jpg";
photos[photos.length] = "/img/photos/gallery/Templegrouping.jpg";
photos[photos.length] = "/img/photos/gallery/DormGirlsAlan.jpg";
photos[photos.length] = "/img/photos/gallery/Dorminauguration.jpg";
photos[photos.length] = "/img/photos/gallery/DormStreetView.jpg";
photos[photos.length] = "/img/photos/gallery/Drawing.jpg";
//photos[photos.length] = "/img/photos/gallery/ElyseAndLisom1.jpg";
photos[photos.length] = "/img/photos/gallery/ElyseAndLisom2.jpg";
// photos[photos.length] = "/img/photos/gallery/ElyseAndSon.jpg";
// photos[photos.length] = "/img/photos/gallery/FirstResidents.jpg";
photos[photos.length] = "/img/photos/gallery/FrontGate.jpg";
photos[photos.length] = "/img/photos/gallery/InaugStage.jpg";
// photos[photos.length] = "/img/photos/gallery/Kannary.jpg";
// photos[photos.length] = "/img/photos/gallery/LightmanChea.jpg";
// photos[photos.length] = "/img/photos/gallery/LightmansChief.jpg";
photos[photos.length] = "/img/photos/gallery/LimHeang2.jpg";
photos[photos.length] = "/img/photos/gallery/Lunch.jpg";
photos[photos.length] = "/img/photos/gallery/Mission.jpg";
photos[photos.length] = "/img/photos/gallery/Monks.jpg";
photos[photos.length] = "/img/photos/gallery/Newland.jpg";
// photos[photos.length] = "/img/photos/gallery/Office.jpg";
photos[photos.length] = "/img/photos/gallery/OfficeDoor.jpg";
photos[photos.length] = "/img/photos/gallery/OldMan.jpg";
photos[photos.length] = "/img/photos/gallery/Parents12.07.jpg";
photos[photos.length] = "/img/photos/gallery/ParentsDay1.jpg";
photos[photos.length] = "/img/photos/gallery/ParentsDay2.jpg";
photos[photos.length] = "/img/photos/gallery/Pheng1.jpg";
// photos[photos.length] = "/img/photos/gallery/Samuy2.jpg";
photos[photos.length] = "/img/photos/gallery/SavadaAndKunnerie.jpg";
photos[photos.length] = "/img/photos/gallery/SchoolInTC.jpg";
photos[photos.length] = "/img/photos/gallery/SideCourtyard.jpg";
// photos[photos.length] = "/img/photos/gallery/TramungChrum1.jpg";
photos[photos.length] = "/img/photos/gallery/TramungChrum2.jpg";
// photos[photos.length] = "/img/photos/gallery/TramungChrum3.jpg";
photos[photos.length] = "/img/photos/gallery/TramungChrum4.jpg";
//photos[photos.length] = "/img/photos/gallery/Vanna.jpg";
photos[photos.length] = "/img/photos/gallery/VillageHouse.jpg";
// photos[photos.length] = "/img/photos/gallery/VillageWomen.jpg";
// photos[photos.length] = "/img/photos/gallery/VisitingDay.jpg";



$(document).ready(function(){

  ////
  //// swap three random images into banner
  ////

  // number of candidate photos
  var nphotos = photos.length;

  $("#divimageband img")
      .each(function() {
        // get random photo
        i = Math.floor(Math.random()*nphotos);
        // swap image
        this.src = "/img/spacer.gif"; // blank image first
        this.src = photos[i];         // then put in the real image
        // pull highest image down into this slot
        photos[i] = photos[nphotos-1];
        // decrease number of available images
        --nphotos;
      });

});


