<!--
  /*
   * Pre-load the specified image.  This loads the image as the page
   * loads, so that when it is used later (such as for a mouseover effect),
   * the image has already been loaded.
   */
// Begin code to put in the head section for image pre-loading.

  function loadPhotos() {
	if (document.images) {
		imageObj = new Array();
		// set image url
		imageURL = new Array();
  	// Preload photos.
		imageURL[0] = "/photoGalleries/Fannie/photos/photo1.jpg";		
		imageURL[1] = "/photoGalleries/Fannie/photos/photo2.jpg";
		imageURL[2] = "/photoGalleries/Fannie/photos/photo3.jpg";
		imageURL[3] = "/photoGalleries/Fannie/photos/photo4.jpg";
		imageURL[4] = "/photoGalleries/Fannie/photos/photo5.jpg";
		imageURL[5] = "/photoGalleries/Fannie/photos/photo6.jpg";
		imageURL[6] = "/photoGalleries/Fannie/photos/photo7.jpg";
		imageURL[7] = "/photoGalleries/Fannie/photos/photo8.jpg";
		imageURL[8] = "/photoGalleries/Fannie/photos/photo9.jpg";
		imageURL[9] = "/photoGalleries/Fannie/photos/photo10.jpg";
		
	// Preload header graphics
		imageURL[10] = "/graphics/PouchCoveHeaderPart1.jpg";
		imageURL[11] = "/graphics/PouchCoveHeaderPart2NoText.jpg";
		imageURL[12] = "/graphics/PouchCoveHeaderPart3NoText.jpg";

		// load images		
		var i = 0;
		for(i=0; i<=9; i++) {
			imageObj[i] = new Image();
			imageObj[i].src = imageURL[i];
		}
	}
    }
	
	loadPhotos();

// End code to put in head section for image pre-loading.

//-->

