<!--
  /*
   * 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();
		
		// images
		imageURL[0] = "/images/dalinheadercircles_over.jpg";
		imageURL[1] = "/images/dalinheadercircles_down.jpg";		

		// buttons
		imageURL[2] = "/buttons/btn_champions_over.gif";
		imageURL[3] = "/buttons/btn_topproducers_over.gif";
		imageURL[4] = "/buttons/btn_showing_over.gif";
		imageURL[5] = "/buttons/btn_events_over.gif";		
		imageURL[6] = "/buttons/btn_breeding_over.gif";	
		imageURL[7] = "/buttons/btn_showpotential_over.gif";
		imageURL[8] = "/buttons/btn_puppies_over.gif";
		imageURL[9] = "/buttons/btn_adopted_over.gif";
		imageURL[10] = "/buttons/btn_contact_over.gif";	
		
		imageURL[11] = "/buttons/btn_champions_active.gif";				
		imageURL[12] = "/buttons/btn_topproducers_active.gif";		
		imageURL[13] = "/buttons/btn_showing_active.gif";		
		imageURL[14] = "/buttons/btn_events_active.gif";
		imageURL[15] = "/buttons/btn_breeding_active.gif";		
		imageURL[16] = "/buttons/btn_showpotential_active.gif";
		imageURL[17] = "/buttons/btn_puppies_active.gif";
		imageURL[18] = "/buttons/btn_adopted_active.gif";
		imageURL[19] = "/buttons/btn_contact_active.gif";		

		// more images
		imageURL[20] = "/images/gallery/lineBoxNW.gif";
		imageURL[21] = "/images/gallery/lineBoxN.gif";
		imageURL[22] = "/images/gallery/lineBoxNE.gif";
		imageURL[23] = "/images/gallery/lineBoxW.gif";
		imageURL[24] = "/images/gallery/lineBoxE.gif";
		imageURL[25] = "/images/gallery/lineBoxSW.gif";
		imageURL[26] = "/images/gallery/lineBoxS.gif";
		imageURL[27] = "/images/gallery/lineBoxSE.gif";		
		
		imageURL[28] = "/photos/puppies/collage.jpg";

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

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

//-->
