<!--

// JavaScript Document



//This function will preload enlarged images,

//so that there will be no delay after

//placing mouse over a thumbnail

function loadImages(){



	/* default width of large image: */

	bigImageWidth = 266;

	/* default height of large image: */

	bigImageHeight = 235;

	

	//Preload three enlarged images:

	enlarged1 = new Image(bigImageWidth,bigImageHeight); 

	enlarged1.src = "images/rescue_train_p_candle_with_a_cause.jpg";

	

	enlarged2 = new Image(bigImageWidth,bigImageHeight); 

	enlarged2.src = "images/rescue_train_p_candle_with_a_cause_2.jpg";

	

	enlarged3 = new Image(bigImageWidth,bigImageHeight); 

	enlarged3.src = "images/rescue_train_p_candle_with_a_cause_3.jpg";

	

}



//This function will replace enlarged image

//with thumbnail after placing mouse over it

function switchImage(imageNum){

	

	if(imageNum == 1)

		document.getElementById('bigOne').src = "images/rescue_train_p_candle_with_a_cause.jpg";

	

	if(imageNum == 2)

		document.getElementById('bigOne').src = "images/rescue_train_p_candle_with_a_cause_2.jpg";

		

	if(imageNum == 3)

		document.getElementById('bigOne').src = "images/rescue_train_p_candle_with_a_cause_3.jpg";

	

}



-->
