<!--
  /*
   * 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 loadSpecialtyBOBPhotos() {
	if (document.images) {
		BOBimageObj = new Array();
		// set image url
		imageURL = new Array();
		imageURL[0] = "/photos/specialtywinners/BOB/Bogey.jpg";
		imageURL[1] = "/photos/specialtywinners/BOB/Busy.jpg";
		imageURL[2] = "/photos/specialtywinners/BOB/Isabel.jpg";
		imageURL[3] = "/photos/specialtywinners/BOB/Jack.jpg";
		imageURL[4] = "/photos/specialtywinners/BOB/Moses.jpg";
		imageURL[5] = "/photos/specialtywinners/BOB/Rascal1.jpg";
		imageURL[6] = "/photos/specialtywinners/BOB/Rascal2.jpg";
		imageURL[7] = "/photos/specialtywinners/BOB/Rascal3.jpg";
		imageURL[8] = "/photos/specialtywinners/BOB/Spencer.jpg";		
		imageURL[9] = "/photos/specialtywinners/BOB/Splash.jpg";
		imageURL[10] = "/photos/specialtywinners/BOB/Stormy.jpg";		
		imageURL[11] = "/photos/specialtywinners/BOB/Titanic.jpg";
		imageURL[12] = "/photos/specialtywinners/BOB/Zoe.jpg";
		
		// load images		
		var i = 0;
		for(i=0; i<=12; i++) {
			BOBimageObj[i] = new Image();
			BOBimageObj[i].src = imageURL[i];
		}
	}
}

function loadSpecialtySuperdogPhotos() {
	if (document.images) {
		SuperdogimageObj = new Array();
		// set image url
		imageURL = new Array();
		imageURL[0] = "/photos/specialtywinners/superdog/Ace.jpg";
		imageURL[1] = "/photos/specialtywinners/superdog/CamerellsBuccaneerBeaver.jpg";
		imageURL[2] = "/photos/specialtywinners/superdog/Clipper.jpg";
		imageURL[3] = "/photos/specialtywinners/superdog/Dani.jpg";
		imageURL[4] = "/photos/specialtywinners/superdog/Dobby.jpg";		
		imageURL[5] = "/photos/specialtywinners/superdog/Docker.jpg";		
		imageURL[6] = "/photos/specialtywinners/superdog/Dutch.jpg";
		imageURL[7] = "/photos/specialtywinners/superdog/Gert.jpg";		
		imageURL[8] = "/photos/specialtywinners/superdog/Holly.jpg";		
		imageURL[9] = "/photos/specialtywinners/superdog/Lancer.jpg";				
		imageURL[10] = "/photos/specialtywinners/superdog/MusicalsBeamofBuccaneer.jpg";	
		imageURL[11] = "/photos/specialtywinners/superdog/Ori.jpg";
		imageURL[12] = "/photos/specialtywinners/superdog/Rixa.jpg";		
		imageURL[13] = "/photos/specialtywinners/superdog/Seven.jpg";
		imageURL[14] = "/photos/specialtywinners/superdog/Simon.jpg";	
		
		// load images		
		var i = 0;
		for(i=0; i<=14; i++) {
			SuperdogimageObj[i] = new Image();
			SuperdogimageObj[i].src = imageURL[i];
		}
	}
}		
	
loadSpecialtyBOBPhotos();	
loadSpecialtySuperdogPhotos();

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

//-->
