// JavaScript Document
<!--

	/* 	Three images for each of the three slots are put into an array
		To show a 'set' of three images, display the images based on the array of 'indexALL'
		To show images in each slot independant of the others, set the imageA index to indexA, imageB to indexB, etc.
	 */
	imageA = new Array(3);
	imageA[0] = "<img src='media/images/homePage/photo1a.jpg' alt='GLAD Photo 3' width='204' height='184' />";
	imageA[1] = "<img src='media/images/homePage/photo2a.jpg' alt='GLAD Photo 3' width='204' height='184' />";
	imageA[2] = "<img src='media/images/homePage/photo3a.jpg' alt='GLAD Photo 3' width='204' height='184' />";
	indexA = Math.floor(Math.random() * imageA.length);

	imageB = new Array(3);
	imageB[0] = "<img src='media/images/homePage/photo1b.jpg' alt='GLAD Photo 3' width='204' height='184' />";
	imageB[1] = "<img src='media/images/homePage/photo2b.jpg' alt='GLAD Photo 3' width='204' height='184' />";
	imageB[2] = "<img src='media/images/homePage/photo3b.jpg' alt='GLAD Photo 3' width='204' height='184' />";
	indexB = Math.floor(Math.random() * imageB.length);

	imageC = new Array(3);
	imageC[0] = "<img src='media/images/homePage/photo1c.jpg' alt='GLAD Photo 3' width='204' height='184' />";
	imageC[1] = "<img src='media/images/homePage/photo2c.jpg' alt='GLAD Photo 3' width='204' height='184' />";
	imageC[2] = "<img src='media/images/homePage/photo3c.jpg' alt='GLAD Photo 3' width='204' height='184' />";
	indexC = Math.floor(Math.random() * imageC.length);
	
	indexALL = Math.floor(Math.random() * 3);
// -->