//created 2009.03.10 by Craig Isamu Hawley
//last modified: 2009.11.03 by CIH

function start() {
  chooseStaff();
  chooseQuote();
  chooseUnderBlue();
}

window.onload = start; 


//This is the function that randomizes the staff portraits in the header
var upperNavPix = new Array("../_img/header/uppernav01.jpg","../_img/header/uppernav02.jpg","../_img/header/uppernav03.jpg","../_img/header/uppernav04.jpg","../_img/header/uppernav05.jpg","../_img/header/uppernav06.jpg","../_img/header/uppernav07.jpg");

function chooseStaff() {
	randomNum = Math.floor((Math.random() * upperNavPix.length));
	document.getElementById("upperNavPics").src = upperNavPix[randomNum];
}


//This is the function that randomizes the staff quotes in the header
var quotePix = new Array("../_img/header/quote01.jpg","../_img/header/quote02.jpg","../_img/header/quote03.jpg","../_img/header/quote04.jpg");

function chooseQuote() {
	randomNum = Math.floor((Math.random() * quotePix.length));
	document.getElementById("quotePics").src = quotePix[randomNum];
}


//This is the function that randomizes the picture underneath the blueprint picture in the header
var imagePix = new Array("../_img/header/image01.jpg","../_img/header/image02.jpg","../_img/header/image03.jpg","../_img/header/image04.jpg","../_img/header/image05.jpg","../_img/header/image06.jpg");

function chooseUnderBlue() {
	randomNum = Math.floor((Math.random() * imagePix.length));
	document.getElementById("underBlueprintPics").src = imagePix[randomNum];
}
