/* Arrays for the images */

var Boys = new Array("/images/random/Boys01.jpg", 
				  	  			 "/images/random/Boys02.jpg",
				  	  			 "/images/random/Boys03.jpg",
				  	  			 "/images/random/Boys04.jpg",
				  	  			 "/images/random/Boys05.jpg",
				  	  			 "/images/random/Boys06.jpg",
				  	  			 "/images/random/Boys07.jpg",
				  	  			 "/images/random/Boys08.jpg",
				  	  			 "/images/random/Boys09.jpg",
				  	  			 "/images/random/Boys10.jpg");
				  	  			 
 
var Girls = new Array("/images/random/Girls01.jpg", 
				  	  			 "/images/random/Girls02.jpg",
				  	  			 "/images/random/Girls03.jpg",
				  	  			 "/images/random/Girls04.jpg",				  	  		
								 "/images/random/Girls05.jpg",
								 "/images/random/Girls06.jpg",
								 "/images/random/Girls07.jpg",
								 "/images/random/Girls08.jpg",
								 "/images/random/Girls09.jpg",
								 "/images/random/Girls10.jpg");
				  	  			 
var Coed = new Array("/images/random/Coed01.jpg", 
				  	  			 "/images/random/Coed02.jpg",
				  	  			 "/images/random/Coed03.jpg",
				  	  			 "/images/random/Coed04.jpg",
				  	  			 "/images/random/Coed05.jpg",
				  	  			 "/images/random/Coed06.jpg",
				  	  			 "/images/random/Coed07.jpg",
				  	  			 "/images/random/Coed08.jpg",
				  	  			 "/images/random/Coed09.jpg",
				  	  			 "/images/random/Coed10.jpg");
				  	  			 
var All = new Array("/images/random/All01.jpg", 
				  	  			 "/images/random/All02.jpg",
				  	  			 "/images/random/All03.jpg",
				  	  			 "/images/random/All04.jpg",
				  	  			 "/images/random/All05.jpg",
				  	  			 "/images/random/All06.jpg",
				  	  			 "/images/random/All07.jpg",
				  	  			 "/images/random/All08.jpg",
				  	  			 "/images/random/All09.jpg",
				  	  			 "/images/random/All10.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);

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



	

/* funtions which write HTML to the page */

function showImageboys() {
	document.write('<IMG SRC="' + Boys[number1] + '" WIDTH="170" HEIGHT="100" LOWSRC="/images/common/E6E9D2.gif">');
}

function showImagegirls() {
	document.write('<IMG SRC="' + Girls[number2] + '" WIDTH="170" HEIGHT="100" LOWSRC="/images/common/E6E9D2.gif">');
}

function showImagecoed() {
	document.write('<IMG SRC="' + Coed[number3] + '" WIDTH="170" HEIGHT="100" LOWSRC="/images/common/E6E9D2.gif">');
}

function showImageall() {
	document.write('<IMG SRC="' + All[number4] + '" WIDTH="170" HEIGHT="100" LOWSRC="/images/common/E6E9D2.gif">');
}


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