mainPics = 11;
smallPics = 20;

// Generate random numbers.
//mainPic = Math.floor(Math.random()*mainPics.length);
mainPic = Math.floor(Math.random()*mainPics);
welcomePic = Math.floor(Math.random()*smallPics);
resourcesPic = Math.floor(Math.random()*smallPics);
if (resourcesPic == welcomePic) resourcesPic++;
if (resourcesPic > smallPics) resourcesPic = 0;

// Assemble the image elements.
mainImage = document.createElement('img');
mainImage.src = '/images/homepage/main-pic/'+mainPic+'.jpg';
//mainImage.alt = mainPics[mainPic];
mainImage.alt = "A candid picture from around the UW-Washington County campus";
mainImage.title = mainImage.alt;
mainImage.height = '277';
mainImage.width = '710';
mainImage.border = '0';

