/* the image names including their extension */
images = [
 'midpic_dallas.jpg',
 'midpic_Dallas-city-park.jpg',
 'midpic_DCampus-campusRend.jpg',
 'midpic_HSC-Library.jpg',
 'midpic_HSC-research.jpg',
 'midpic_UNT_tower.jpg',
 'midpic_UNT-admin-fountain.jpg',
 'midpic_UNT-AthleticsCenter.jpg',
 'midpic_UNT-Colliseum.jpg',
 'midpic_UNT-ESSC.jpg',
 'midpic_UNT-Gateway.jpg',
 ];

/* inwhat directory the images live */
var img_directory = 'images/';

/* the length of the images array */
var how_long = images.length;

/* the ran(dom) image function */
function ranimg(){
 if(document.getElementById("photo")){
 randomize = Math.floor((Math.random() * how_long))
 document.getElementById("photo").style.background = 'url('+ img_directory + images[randomize] +')';
 }
 }