<!--
  /*
   * 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();
		// buttons
		
		// images
		imageURL[0] = "/images/fiftiesbg.jpg";		
		imageURL[1] = "/images/dalinheaderpoodle.jpg";
		imageURL[2] = "/images/dalinheadername.jpg";
		imageURL[3] = "/images/dalinheadercircles.jpg";
		imageURL[4] = "/images/dalinheadercircles_down.jpg";		
		imageURL[5] = "/images/dalinheaderbuttonbg.jpg";
		
		imageURL[6] = "/buttons/btn_champions.gif";
		imageURL[7] = "/buttons/btn_topproducers.gif";
		imageURL[8] = "/buttons/btn_showing.gif";
		imageURL[9] = "/buttons/btn_events.gif";		
		imageURL[10] = "/buttons/btn_breeding.gif";	
		imageURL[11] = "/buttons/btn_showpotential.gif";
		imageURL[12] = "/buttons/btn_puppies.gif";
		imageURL[13] = "/buttons/btn_adopted.gif";
		imageURL[14] = "/buttons/btn_contact.gif";		
		
		// load images		
		var i = 0;
		for(i=0; i<=14; i++) {
			imageObj[i] = new Image();
			imageObj[i].src = imageURL[i];
		}
	}
}

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

//-->

