var photo=new Array()
//insert images src here
photo[0]='http://eip.gmu.edu/images/photobar3.jpg';
photo[1]='http://eip.gmu.edu/images/photobar4.jpg';


var title=new Array()
//insert alt text here
title[0]='photos of EIP students';
title[1]='photos of EIP students';


var xy=Math.floor(Math.random()*photo.length);

document.write('<img src="'+photo[xy]+'" alt="'+title[xy]+'" />');