// JavaScript Document

<!--
// ==============================================
// Copyright 2003 by jsCode.com
// Source: jsCode.com
// Author: etLux
// Free for all; but please leave in the header.
// ==============================================

// Set up the image files to be used.
var theImages = new Array() // do not change this
// To add more image files, continue with the
// pattern below, adding to the array. Rememeber
// to increment the theImages[x] index!

theImages[0] = '/images/featured/BrettHerzog_6515-1889.jpg'
theImages[1] = '/images/featured/JamieHail_8171-794.jpg'
theImages[2] = '/images/featured/JordiLanis_8171-461.jpg'
theImages[3] = '/images/featured/LawrenceAdemiluyi_8171-317.jpg'
theImages[4] = '/images/featured/LevyDo_8171-591.jpg'
theImages[5] = '/images/featured/LoanNguyen_6515-1314.jpg'
theImages[6] = '/images/featured/PinkyPatel_8171-172.jpg'
theImages[7] = '/images/featured/RyanPettway_6515-1187.jpg'
theImages[8] = '/images/featured/TolaAjayi_171-441.jpg'
theImages[9] = '/images/featured/em_AbbeyOnan_s.png'
theImages[10] = '/images/featured/em_MuayyadAl-Ubaidi_s.png'
theImages[11] = '/images/featured/em_SusanneBernard_s.png'
theImages[12] = '/images/featured/em_ChelsieRoland_s.jpg'
theImages[13] = '/images/featured/em_BrianBurrough_s.png'
theImages[14] = '/images/featured/em_BrianWilburn_s.png'
theImages[15] = '/images/featured/em_ElenaCuaderes_s.png'
theImages[16] = '/images/featured/em_HeatherMarkgraf_s.png'
theImages[17] = '/images/featured/em_JeffBerry_s.png'
theImages[18] = '/images/featured/em_KelliHayward_s.png'
theImages[19] = '/images/featured/em_LyndiZavy_s.png'
theImages[20] = '/images/featured/em_MatthewCloud_s.png'
theImages[21] = '/images/featured/em_PramodKChetty_s.png'
theImages[22] = '/images/featured/em_ShirleyWilliams_s.png'
theImages[23] = '/images/featured/em_VesperGrantham_s.png'
theImages[24] = '/images/featured/em_VickiCoury_s.png'
theImages[25] = '/images/featured/em_WhitneySteele_s.png'
theImages[26] = '/images/featured/em_DrLarryRegens_s.png'

// ======================================
// do not change anything below this line
// ======================================

var j = 0
var p = theImages.length;

var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theImages[i]
}

var whichImage = Math.round(Math.random()*(p-1));
function showImage(){
document.write('<img src="'+theImages[whichImage]+'">');
}

//-->


