<!--
  /*
   * Pre-load the specified image.  This loads the image as the page
   * loads, so that when it is used later the image has already been loaded.
   */
   
function preloadImages() {
	if (document.images) {
		imageObj = new Array();
		// set image url
		imageURL = new Array();
		
		imageURL[0] = "/females/Stella/images/Stella01.jpg";		
		imageURL[1] = "/females/Stella/images/Stella2008NatlSpecialty.jpg";
		imageURL[2] = "/females/Stella/images/Stella_moving.jpg";		
		
		// load images		
		var i = 0;
		for(i=0; i<=2; i++) {
			imageObj[i] = new Image();
			imageObj[i].src = imageURL[i];
		}
		
	}
}

preloadImages();	

//-->