<!--
  /*
   * 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/cart_icon_over.gif";		
		imageURL[1] = "/images/paw.gif";

		// load images		
		var i = 0;
		for(i=0; i<=1; i++) {
			imageObj[i] = new Image();
			imageObj[i].src = imageURL[i];
		}
	}
}

	preloadImages();	
	  
// End code to put in head section for image pre-loading.

//-->
