/* Arrays for the images */

var homeA = new Array("../images/inside/rotating/A_01.jpg", 
				  	  			 "../images/inside/rotating/A_02.jpg",
				  	  			 "../images/inside/rotating/A_03.jpg",
				  	  			 "../images/inside/rotating/A_04.jpg",
				  	  			 "../images/inside/rotating/A_05.jpg",
				  	  			 "../images/inside/rotating/A_06.jpg",
				  	  			 "../images/inside/rotating/A_07.jpg",
				  	  			 "../images/inside/rotating/A_08.jpg",
				  	  			 "../images/inside/rotating/A_09.jpg",
				  	  			 "../images/inside/rotating/A_10.jpg");
				  	  			 
 
var homeB = new Array("../images/inside/rotating/B_01.jpg", 
				  	  			 "../images/inside/rotating/B_02.jpg",
				  	  			 "../images/inside/rotating/B_03.jpg",
				  	  			 "../images/inside/rotating/B_04.jpg",				  	  		
								 "../images/inside/rotating/B_05.jpg",
								 "../images/inside/rotating/B_06.jpg",
								 "../images/inside/rotating/B_07.jpg",
								 "../images/inside/rotating/B_08.jpg",
								 "../images/inside/rotating/B_09.jpg",
								 "../images/inside/rotating/B_10.jpg");
				  	  			 
var homeC = new Array("../images/inside/rotating/C_01.jpg", 
				  	  			 "../images/inside/rotating/C_02.jpg",
				  	  			 "../images/inside/rotating/C_03.jpg",
				  	  			 "../images/inside/rotating/C_04.jpg",
				  	  			 "../images/inside/rotating/C_05.jpg",
				  	  			 "../images/inside/rotating/C_06.jpg",
				  	  			 "../images/inside/rotating/C_07.jpg",
				  	  			 "../images/inside/rotating/C_08.jpg",
				  	  			 "../images/inside/rotating/C_09.jpg",
				  	  			 "../images/inside/rotating/C_10.jpg");
				  	  			 
var homeD = new Array("../images/inside/rotating/D_01.jpg", 
				  	  			 "../images/inside/rotating/D_02.jpg",
				  	  			 "../images/inside/rotating/D_03.jpg",
				  	  			 "../images/inside/rotating/D_04.jpg",
				  	  			 "../images/inside/rotating/D_05.jpg",
				  	  			 "../images/inside/rotating/D_06.jpg",
				  	  			 "../images/inside/rotating/D_07.jpg",
				  	  			 "../images/inside/rotating/D_08.jpg",
				  	  			 "../images/inside/rotating/D_09.jpg",
				  	  			 "../images/inside/rotating/D_10.jpg");
				  	  			 
				  	  			 
var homeE = new Array("../images/inside/rotating/E_01.jpg", 
				  	  			 "../images/inside/rotating/E_02.jpg",
				  	  			 "../images/inside/rotating/E_03.jpg",
				  	  			 "../images/inside/rotating/E_04.jpg",
				  	  			 "../images/inside/rotating/E_05.jpg",
				  	  			 "../images/inside/rotating/E_06.jpg",
				  	  			 "../images/inside/rotating/E_07.jpg",
				  	  			 "../images/inside/rotating/E_08.jpg",
				  	  			 "../images/inside/rotating/E_09.jpg",
				  	  			 "../images/inside/rotating/E_10.jpg");
				  	  			 
var homeF = new Array("../images/inside/rotating/F_01.jpg", 
				  	  			 "../images/inside/rotating/F_02.jpg",
				  	  			 "../images/inside/rotating/F_03.jpg",
				  	  			 "../images/inside/rotating/F_04.jpg",
				  	  			 "../images/inside/rotating/F_05.jpg",
				  	  			 "../images/inside/rotating/F_06.jpg",
				  	  			 "../images/inside/rotating/F_07.jpg",
				  	  			 "../images/inside/rotating/F_08.jpg",
				  	  			 "../images/inside/rotating/F_09.jpg",
				  	  			 "../images/inside/rotating/F_10.jpg");
				  	  			 
								 


/* function to get a random number */

function random(){
	random.seed = (random.seed*random.a + random.c) % random.m;
	return random.seed/ random.m;
}
random.m = 714025; random.a = 4096; random.c = 150889;
random.seed = (new Date()).getTime()%random.m;


/* maximum number of items in array [0-n] */

max = 9

/* variables for determining the image */

var number1 = Math.round(random()*max);

var number2 = Math.round(random()*max);

var number3 = Math.round(random()*max);

var number4 = Math.round(random()*max);

var number5 = Math.round(random()*max);




	

/* funtions which write HTML to the page */

function showImage1() {
	document.write('<IMG SRC="' + homeA[number1] + '" WIDTH="100" HEIGHT="80" LOWSRC="../images/common/99CC66.gif">');
}

function showImage2() {
	document.write('<IMG SRC="../images/common/spacer.gif" WIDTH="2" HEIGHT="78">');
	document.write('<IMG SRC="' + homeB[number2] + '" WIDTH="100" HEIGHT="80" LOWSRC="../images/common/99CC66.gif">');
}

function showImage3() {
	document.write('<IMG SRC="../images/common/spacer.gif" WIDTH="2" HEIGHT="78">');
	document.write('<IMG SRC="' + homeC[number3] + '" WIDTH="100" HEIGHT="80" LOWSRC="../images/common/99CC66.gif">');
}

function showImage4() {
	document.write('<IMG SRC="../images/common/spacer.gif" WIDTH="2" HEIGHT="78">');
	document.write('<IMG SRC="' + homeD[number4] + '" WIDTH="100" HEIGHT="80" LOWSRC="../images/common/99CC66.gif">');
}

function showImage5() {
	document.write('<IMG SRC="../images/common/spacer.gif" WIDTH="2" HEIGHT="78">');
	document.write('<IMG SRC="' + homeE[number5] + '" WIDTH="100" HEIGHT="80" LOWSRC="../images/common/99CC66.gif">');
}



function handleResize(){
        self.location.reload();
}

