// JavaScript Document

function loadMainPic() {
  if(loadRandomPic == false)
  	return;
  else
  {
	imageArray = new Array;
	var i = 1;
	var total = 9;
	while (i < (total+1)) {
		if (i<10) {
			imageArray[i] = "image0" + i;
		}
		else {
			imageArray[i] = "image" + i;
		}
		i++
	}
	var rndmImageNbr = (imageArray[(Math.round(Math.random()*(total-1)+1))]);
	document.getElementById("TopPicture").src = "http://stoneybrook.us/images/shared/mainPics/" + rndmImageNbr + ".jpg";
  }
}

function loadQuote() {
	quoteArray = new Array;
	var i = 1;
	var total = 15;
	while (i < (total+1)) {
		if (i<10) {
			quoteArray[i] = "quote0" + i;
		}
		else {
			quoteArray[i] = "quote" + i;
		}
		i++
	}
	var rndmImageNbr = (quoteArray[(Math.round(Math.random()*(total-1)+1))]);
	document.getElementById("quote").src = "http://stoneybrook.us/images/shared/quotes/" + rndmImageNbr + ".gif";
}