//<--
function random_alumni_photo(){
var mycontent=new Array()
//specify random content below.
mycontent[1]='<img src="/arts/images/Arts_at_Queens_landing_page_banner.jpg" width="770" height="194" border="0" alt="">'
//mycontent[2]='<img src="/arts/images/landing_BoarsHead.jpg" width="770" height="194" border="0" alt="">'
//mycontent[3]='<img src="/arts/images/landing_Alumni03.jpg" width="770" height="194" border="0" alt="">'
//mycontent[4]='<img src="/arts/images/landing_Alumni04.jpg" width="770" height="194" border="0" alt="">'
//mycontent[5]='<img src="/arts/images/landing_Alumni05.jpg" width="770" height="194" border="0" alt="">'
//mycontent[6]='<img src="/arts/images/landing_Alumni06.jpg" width="770" height="194" border="0" alt="">'

var ry=Math.floor(Math.random()*mycontent.length)
if (ry==0)
ry=1
document.write(mycontent[ry])
}
random_alumni_photo()
//-->