function rotate(){
	myimages=new Array();
	myimages[0]='/students/images/exploring majors20074.jpg';
	myimages[1]='/students/images/exploring majors20073.jpg';
	myimages[2]='/students/images/exploring majors20072.jpg';
	myimages[3]='/students/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>');
}
