function randomVPSAImages(){
var vpsa_images=new Array()
var vpsa_text=new Array()
//specify random images below. You can have as many as you wish
vpsa_images[1]="data/sites/1/images/blanche_hughes.png"
vpsa_images[2]="data/sites/1/images/jody_donovan.png"
vpsa_images[3]="data/sites/1/images/dave_mckelfresh.png"

vpsa_text[1]="Dr. Blanche Hughes<br />Vice President<br />Division of Student Affairs"
vpsa_text[2]="Dr. Jody Donovan<br />Associate Dean of Students<br />Division of Student Affairs"
vpsa_text[3]="Dr. Dave McKelfresh<br />Director of Assessment<br />Division of Student Affairs"

var ry=Math.floor(Math.random()*vpsa_images.length)
if (ry==0)
ry=1
document.write('<div id="audmidcol"><a href="http://www.studentaffairs.colostate.edu/our-staff.aspx"><img src="'+vpsa_images[ry]+'" alt="'+vpsa_images[ry]+'" border="0" /></a></div><div id="audrightcol"><p>'+vpsa_text[ry]+'</p></div>')
}