function LoadRotatingImages() {
  for (var i in rotating_images) {
    LoadRotatingImage(i);
  }
}

function LoadRotatingImage(a) {
  var c = Math.round(rotating_images[a].length*Math.random()) - 1;
  if (c < 0) c = 0;
  if (c > (rotating_images[a].length - 1)) c = rotating_images[a].length -1;
  document.getElementById(a).src = rotating_images[a][c];
}

var rotating_images = new Object();

function AddRotatingImage(a, b) {
  if (!rotating_images[a])
    rotating_images[a] = new Array();
  rotating_images[a][rotating_images[a].length] = b;
}


AddRotatingImage("rotating_image","http://www.elon.edu/images/e-web/students/residence_life/main_image1.jpg");
AddRotatingImage("rotating_image","http://www.elon.edu/images/e-web/students/residence_life/main_image2.jpg");
AddRotatingImage("rotating_image","http://www.elon.edu/images/e-web/students/residence_life/main_image3.jpg");

AddRotatingImage("rotating_image","http://www.elon.edu/images/e-web/students/residence_life/main_image4.jpg");

AddRotatingImage("rotating_image","http://www.elon.edu/images/e-web/students/residence_life/main_image5.jpg");

AddRotatingImage("rotating_image","http://www.elon.edu/images/e-web/students/residence_life/main_image6.jpg");

AddRotatingImage("rotating_image","http://www.elon.edu/images/e-web/students/residence_life/main_image7.jpg");

AddRotatingImage("rotating_image","http://www.elon.edu/images/e-web/students/residence_life/main_image8.jpg");

AddRotatingImage("rotating_image","http://www.elon.edu/images/e-web/students/residence_life/main_image9.jpg");
AddRotatingImage("rotating_image","http://www.elon.edu/images/e-web/students/residence_life/main_image10.jpg");
AddRotatingImage("rotating_image","http://www.elon.edu/images/e-web/students/residence_life/main_image11.jpg");
AddRotatingImage("rotating_image","http://www.elon.edu/images/e-web/students/residence_life/main_image12.jpg");
AddRotatingImage("rotating_image","http://www.elon.edu/images/e-web/students/residence_life/main_image13.jpg");
AddRotatingImage("rotating_image","http://www.elon.edu/images/e-web/students/residence_life/main_image13.jpg");




