jQuery.preloadImages = function(images)
{
  for(var i = 0; i<images.length; i++)
  {
    jQuery("<img>").attr("src", images[i]);
  }
}

$(function() {
  var max = 3;
  var randomNum = Math.floor(Math.random()*max+1);
  
  $("body").attr("class", "masthead" + randomNum);
});
