//<--
function random_nursing_photo(){
var mycontent=new Array()
//specify random content below.
mycontent[1]='<img src="http://www.queens.edu/community/Landing_Page_Images/Home_1.jpg" width="770" height="194" border="0" alt="">'
mycontent[2]='<img src="http://www.queens.edu/community/Landing_Page_Images/Home_2.jpg" width="770" height="194" border="0" alt="">'
mycontent[3]='<img src="http://www.queens.edu/community/Landing_Page_Images/Home_3.jpg" width="770" height="194" border="0" alt="">'
mycontent[4]='<img src="http://www.queens.edu/community/Landing_Page_Images/Home_4.jpg" width="770" height="194" border="0" alt="">'
mycontent[5]='<img src="http://www.queens.edu/community/Landing_Page_Images/Home_5.jpg" width="770" height="194" border="0" alt="">'
mycontent[6]='<img src="http://www.queens.edu/community/Landing_Page_Images/Home_5.jpg" width="770" height="194" border="0" alt="">'
mycontent[7]='<img src="http://www.queens.edu/community/Landing_Page_Images/Home_5.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_nursing_photo()
//-->