<!--
  /*
   * 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 preloadImages() {
	if (document.images) {
		imageObj = new Array();
		// set image url
		imageURL = new Array();

		// photos
		imageURL[0] = "/pwds/Boss/photos/Boss.jpg";
		imageURL[1] = "/pwds/Boogie/photos/Boogie.jpg";
		imageURL[2] = "/pwds/Levi/photos/Levi.jpg";
		
		imageURL[3] = "/pwds/Annie/photos/Annie2005BWDanvilleKC.jpg";
		imageURL[4] = "/pwds/Cinders/photos/Cinders.jpg";
		imageURL[5] = "/pwds/Dallas/photos/Dallas.jpg";
		imageURL[6] = "/pwds/Rosie/photos/Rosie.jpg";		
		
		// images
		imageURL[7] = "/images/titles/BuddingStars.gif";
		imageURL[8] = "/images/titles/FoundationPWDs.gif";
		imageURL[9] = "/images/titles/OtherSweetMeadowsChampions.gif";
		imageURL[10] = "/images/titles/OurBoys.gif";
		imageURL[11] = "/images/titles/OurGirls.gif";
		imageURL[12] = "/images/titles/pwdstandard.gif";

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

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

//-->
