function rotate(){
	myimages=new Array()
	myimages[0]="images/exploring%20majors20074.jpg"
	myimages[1]="images/exploring%20majors20073.jpg"
	myimages[2]="images/exploring%20majors20072.jpg"
	myimages[3]="images/career day2007 007.jpg"	
	

	mycaptions=new Array()
	mycaptions[0]="Students interact with faculty at the Exploring Majors event"

	mycaptions[1]="Students interact with faculty at the Exploring Majors event"

	mycaptions[2]="Students and faculty mingle at the fall Exploring Majors event"


	mycaptions[3]="Candidates network with professionals from a variety of organizations at Career Day"

	var n = Math.floor(Math.random()*myimages.length)

	document.write('<img src='+'"'+myimages[n]+'"'+'alt='+'"'+mycaptions[n]+'"'+'border=0><br><center>'+mycaptions[n]+'</center><br>')
}


