// Replaces the image that appears in the "who we are" box
function personMouseOver(name) {
	document.getElementById("profilepic").style.backgroundImage = "url(photos/"+name+".jpg)";
}

// Clears the image in the "who we are" box
function personMouseOut() {
	document.getElementById("profilepic").style.backgroundImage = "url(stf-icons/grass_sm.png)";
}

function preloadImages() {
	for (x=0; x < preloadImages.arguments.length; x++) {
		myimages[x] = new Image();
		myimages[x].src = preloadImages.arguments[x];
	}
}
