// JavaScript Document

function validateAndSubmitSearch(form) {
	if(form.search.value == "Search your Site" || form.search.value == "") {
		// no search submitted on "Search your Site" or empty searches
		form.search.focus() // places cursor back in the search field
		return false //stops the form from being submitted
	} else {
		//form.search.value = form.search.value + " site:www.csuchico.edu/web/" //search only usrv site
		return true
	}
}
function selectHomeImage() {
	var randNum = Math.round(Math.random()*4)+1
	document.write("<img src='http://www.csuchico.edu/web/templates/2/images/rotating_home/" + randNum + ".jpg' alt='Home page rotating photo' name='home_rotating_photo' width='600' height='157 border='0' id='home_rotating_photo'/>")
	//alert(randNum)
}

function selectInteriorImage() {
	var randNum = Math.round(Math.random()*13)+1
	document.write("<img src='images/rotating_interior/" + randNum + ".jpg' alt='Interior page rotating photo' name='interior_rotating_photo' width='180' height='238' border='0' id='interio_rotatingr_photo' />")
	//alert(randNum)
}
