<!--
  /*
   * 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 loadImages() {
	if (document.images) {
		imageObj = new Array();
		// set image url
		imageURL = new Array();
		imageURL[0] = "/images/header.jpg";
		imageURL[1] = "/images/getadobereader.gif";
		imageURL[2] = "/images/pdficon_large.gif";
		imageURL[3] = "/images/pdficon_small.gif";
		imageURL[4] = "/images/thankyou.gif";
		imageURL[5] = "/images/pinawards.jpg";
		imageURL[6] = "/images/OFFASampleCert.jpg";
		imageURL[7] = "/photos/activities/title.jpg";		
		imageURL[8] = "/photos/activities/frisbee.jpg";
		imageURL[9] = "/photos/activities/tracking.jpg";	
		imageURL[10] = "/photos/education/breeders/intro1.jpg";		
		imageURL[11] = "/photos/education/breeders/intro2.jpg";		
		imageURL[12] = "/photos/education/breeders/intro3.jpg";		
		imageURL[13] = "/photos/education/breeders/intro4.jpg";			
		imageURL[14] = "/photos/education/breeders/introlabel.jpg";
		imageURL[15] = "/photos/health/HealthTent.jpg";		
		imageURL[16] = "/photos/resources/memorials/memorial1.jpg";
		imageURL[17] = "/photos/resources/memorials/memorial1title.jpg";
		imageURL[18] = "/photos/resources/programs/programs1.jpg";		


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

loadImages();
// End code to put in head section for image pre-loading.

//-->

