<!--
  /*
   * 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 loadImages() {
	if (document.images) {
		imageObj = new Array();
		// set image url
		imageURL = new Array();
  	// Preload primary graphics.		
		imageURL[0] = "/graphics/PouchCoveLeftNav.png";		
		imageURL[1] = "/graphics/PouchCoveHeaderPart1.jpg";
		imageURL[2] = "/graphics/PouchCoveHeaderPart2.jpg";
		imageURL[3] = "/graphics/PouchCoveHeaderPart3.jpg";
		imageURL[4] = "/graphics/spacer.gif";
		
	  // Preload images for rollover effects.
		imageURL[5] = "/buttons/About_PWDs-over.gif";
		imageURL[6] = "/buttons/About_Us-over.gif";
		imageURL[7] = "/buttons/The_Foundation-over.gif";
		imageURL[8] = "/buttons/Meet_the_Boys-over.gif";
		imageURL[9] = "/buttons/Meet_the_Girls-over.gif";
		imageURL[10] = "/buttons/Other_PWDs-over.gif";
		imageURL[11] = "/buttons/Events-over.gif";
		imageURL[12] = "/buttons/Puppies-over.gif";
		imageURL[13] = "/buttons/News_Archive-over.gif";
		imageURL[14] = "/buttons/Links-over.gif";
		imageURL[15] = "/buttons/Meet_the_Newfies-over.gif";
		
		imageURL[16] = "/buttons/About_PWDs-down.gif";
		imageURL[17] = "/buttons/About_Us-down.gif";
		imageURL[18] = "/buttons/The_Foundation-down.gif";
		imageURL[19] = "/buttons/Meet_the_Boys-down.gif";
		imageURL[20] = "/buttons/Meet_the_Girls-down.gif";
		imageURL[21] = "/buttons/Other_PWDs-down.gif";
		imageURL[22] = "/buttons/Events-down.gif";
		imageURL[23] = "/buttons/Puppies-down.gif";
		imageURL[24] = "/buttons/News_Archive-down.gif";
		imageURL[25] = "/buttons/Links-down.gif";
		imageURL[26] = "/buttons/Meet_the_Newfies-down.gif";
		

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

// End code to put in head section for image pre-loading.

//-->
