$(document).ready(function() {
  var randomImages = ['1','2','3','4','5','6','7','8','9']; /* There must be as many numbers here as there are image options. */
  var rndNum = Math.ceil(Math.random() * randomImages.length);
  $("div#container").addClass("image" + rndNum);
});