function pullQuote() {
	var randNum = Math.round(Math.random()*4)+1
	document.write("<style type='text/css'>");
	document.write("#pullquote" + randNum + " {");
	document.write("display: block;");
	document.write("} </style>");
}

function selectHomeImage() {
	homeImages = new Array('art', 'cob', 'housing', 'prs', 'geop', 'cmse', 'nfsc', 'fa');
	var i = Math.round(Math.random()*(homeImages.length-1))
	document.write("<a href='http://www.csuchico.edu/" + homeImages[i] + "'><img src='/web/_assets/images/homePage/" + homeImages[i] + ".jpg' alt='' name='Web Services' width='434' height='221' /></a>")

}