// JavaScript Document

//Gets random pictures for top of page
var randpic= new Array("<img src='randomimg/boy1.jpg' style='width: 235px; height: 158px;'>",
					   "<img src='randomimg/foodpantry.jpg' style='width: 235px; height: 158px;'>",
					   "<img src='randomimg/group1.jpg' style='width: 235px; height: 158px;'>",
					   "<img src='randomimg/group2.jpg' style='width: 235px; height: 158px;'>",
					   "<img src='randomimg/group3.jpg' style='width: 235px; height: 158px;'>",
					   "<img src='randomimg/labyrinth1.jpg' style='width: 235px; height: 158px;'>",
					   "<img src='randomimg/tomato.jpg' style='width: 235px; height: 158px;'>",
					   "<img src='randomimg/random1.jpg' style='width: 235px; height: 158px;'>",
					   "<img src='randomimg/random2.jpg' style='width: 235px; height: 158px;'>",
					   "<img src='randomimg/random3.jpg' style='width: 235px; height: 158px;'>",
					   "<img src='randomimg/random4.jpg' style='width: 235px; height: 158px;'>",
					   "<img src='randomimg/random5.jpg' style='width: 235px; height: 158px;'>",
					   "<img src='randomimg/random6.jpg' style='width: 235px; height: 158px;'>",
					   "<img src='randomimg/random7.jpg' style='width: 235px; height: 158px;'>",
					   "<img src='randomimg/random8.jpg' style='width: 235px; height: 158px;'>",
					   "<img src='randomimg/random9.jpg' style='width: 235px; height: 158px;'>",
					   "<img src='randomimg/random10.jpg' style='width: 235px; height: 158px;'>",
					   "<img src='randomimg/random11.jpg' style='width: 235px; height: 158px;'>",
					   "<img src='randomimg/random12.jpg' style='width: 235px; height: 158px;'>",
					   "<img src='randomimg/random13.jpg' style='width: 235px; height: 158px;'>",
					   "<img src='randomimg/random14.jpg' style='width: 235px; height: 158px;'>",
					   "<img src='randomimg/random15.jpg' style='width: 235px; height: 158px;'>",
					   "<img src='randomimg/random16.jpg' style='width: 235px; height: 158px;'>",
					   "<img src='randomimg/random17.jpg' style='width: 235px; height: 158px;'>",
					   "<img src='randomimg/random18.jpg' style='width: 235px; height: 158px;'>",
					   "<img src='randomimg/random19.jpg' style='width: 235px; height: 158px;'>",
					   "<img src='randomimg/random20.jpg' style='width: 235px; height: 158px;'>",
					   "<img src='randomimg/random21.jpg' style='width: 235px; height: 158px;'>",
					   "<img src='randomimg/random22.jpg' style='width: 235px; height: 158px;'>",
					   "<img src='randomimg/random23.jpg' style='width: 235px; height: 158px;'>",
					   "<img src='randomimg/random24.jpg' style='width: 235px; height: 158px;'>",
					   "<img src='randomimg/random25.jpg' style='width: 235px; height: 158px;'>",
					   "<img src='randomimg/random26.jpg' style='width: 235px; height: 158px;'>",
					   "<img src='randomimg/random27.jpg' style='width: 235px; height: 158px;'>",
					   "<img src='randomimg/random28.jpg' style='width: 235px; height: 158px;'>",
					   "<img src='randomimg/random29.jpg' style='width: 235px; height: 158px;'>",
					   "<img src='randomimg/random30.jpg' style='width: 235px; height: 158px;'>",
					   "<img src='randomimg/family1.jpg' style='width: 235px; height: 158px;'>");
var alength= (randpic.length)-1;
var firstnum;
var secondnum;

function firstroll() {
	//first dice roll
	randnum = Math.floor(Math.random()*((1+alength-1) +1));
	document.write (randpic[randnum]);
	firstnum = randnum;
}
	
	//Second dice roll
function secondroll(){
	randnum= Math.floor(Math.random()*((1+alength-1) +1));
	if (randnum == firstnum) {
		secondroll();
	}
	else {
		document.write (randpic[randnum]);
		secondnum= randnum;
	}
}
