<!--
  /*
   * 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 preloadPugImages() {
	if (document.images) {
		imageObj = new Array();
		// set image url
		imageURL = new Array();
		// buttons
		
		// images
		imageURL[0] = "/photos/pug_blanket.jpg";		
		imageURL[1] = "/photos/pug_blanket_large.jpg";		
		imageURL[2] = "/photos/pug_jacket.jpg";		
		imageURL[3] = "/photos/pug_jacket_back.jpg";		
		imageURL[4] = "/photos/pug_jacket_front.jpg";		
		imageURL[5] = "/photos/pug_pattern1.jpg";
		imageURL[6] = "/photos/pug_pattern2.jpg";
		imageURL[7] = "/photos/pug_vest.jpg";				
		imageURL[8] = "/photos/pug_vest_back.jpg";				
		imageURL[9] = "/photos/pug_vest_front.jpg";				

		// load images		
		var i = 0;
		for(i=0; i<=9; i++) {
			imageObj[i] = new Image();
			imageObj[i].src = imageURL[i];
		}
	}
}

	preloadPugImages();	
	  
// End code to put in head section for image pre-loading.

//-->

