<!--
  /*
   * 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] = "/images/LRbg.png";		
		
	  // Preload images for rollover effects.
		imageURL[1] = "/images/MainPage_Button_On_01.png";
		imageURL[2] = "/images/MainPage_Button_On_02.png";
		imageURL[3] = "/images/MainPage_Button_On_03.png";
		imageURL[4] = "/images/MainPage_Button_On_04.png";
		imageURL[5] = "/images/MainPage_Button_On_05.png";		

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

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

//-->

