var siteRoot = 'http://www.faith.edu/';
var shortSplashRoot = "images/splash_short/";

// ----------------------------------
// ONLY EDIT THE ACTUAL PHOTO NAMES
// THE LAST ONE CANNOT END IN A COMMA
// ----------------------------------

var shortSplashImages = [
  siteRoot + shortSplashRoot + "DevFriendships.jpg",
  siteRoot + shortSplashRoot + "EnhFoundation.jpg",
  siteRoot + shortSplashRoot + "ExpGlobal.jpg",
  siteRoot + shortSplashRoot + "ExpGrowth.jpg",
  siteRoot + shortSplashRoot + "ExpMinistry.jpg",
  siteRoot + shortSplashRoot + "ExpResources.jpg",
  siteRoot + shortSplashRoot + "ExpTeamwork.jpg",
  siteRoot + shortSplashRoot + "OppGrowth.jpg"
];



// ----------------------------
// DO NOT EDIT BELOW THIS POINT
// ----------------------------

var shortSplashRandomNumber = Math.floor(Math.random() * shortSplashImages.length);
document.write('<img src="' + shortSplashImages[shortSplashRandomNumber] + '" alt="" /><br />');
