function random_welcome_img()
{

	// specify random image names & alt text
	// add more lines as needed

	var myimages=new Array(); 							var mycaption=new Array();

	myimages[0]="images2009-02/content/devalum_01.jpg";	mycaption[0]="Graduates of OU-COM’s Class of 2009, reflect after giving their Osteopathic Oath at the end of their commencement ceremony.";
	myimages[1]="images2009-02/content/devalum_02.jpg";	mycaption[1]="Daquesha Chever, D.O. (‘09), gets a congratulatory hug after the 2009 OU-COM commencement ceremony.";
	myimages[2]="images2009-02/content/devalum_03.jpg";	mycaption[2]="Jay Shubrook, D.O. (‘96), gives the commencement address at the 2009 OU-COM graduation.  Dr. Shubrook is the first OU-COM faculty member chosen by vote of the graduating class to deliver the keynote address.";
	myimages[3]="images2009-02/content/devalum_04.jpg";	mycaption[3]="Graduates and mentors line up outside Templeton-Blackburn Alumni Memorial Auditorium for OU-COM’s 2009 graduation ceremony.";		
	myimages[4]="images2009-02/content/devalum_05.jpg";	mycaption[4]="Sarah Werner, D.O. (‘09), receives her hood from her mentor Richard Schuster, D.O.( ‘94), as Dean John Brose, D.O., and Ohio University President Roderick McDavis, Ph. D., look on.";
	
	//generate random number

	var ry=Math.floor(Math.random()*myimages.length)

	// display image and alt text

	document.writeln('<img src="'+myimages[ry]+'" WIDTH=297 HEIGHT=197 border=0 ALT="">');
	document.write('<FONT SIZE=2>' +mycaption[ry]+ '</FONT>');
}

random_welcome_img()