function writeFac(){
	randomFac();
}
function randomFac(){
	images = new Array(3);
	images[0] = "<p align='center'><img src='/cite/faculty/images/MarySheppardhighligh.jpg' alt='Mary Sheppard'><br><br><a href='/cite/faculty/MSheppard.htm'>Read about Mary Sheppard</a></p>";
	images[1] = "<p align='center'><img src='/cite/faculty/images/judyClark_teaching%20h.jpg' alt='Judy Clark'><br><br><a href='/cite/faculty/JClark.htm'>Read about Judy Clark</a></p>";
	images[2] = "<p align='center'><img src='/cite/faculty/images/ed%20Leadership%20cohort.jpg' alt='Education Leadership'><br><br><a href='/cite/faculty/Education_Leadership1.htm'>Read about Education Leadership</a></p>";
	index = Math.floor(Math.random() * images.length);
	document.write(images[index]);
}
