// JavaScript Document


//be sure to update the Array(#) number and images[#] when adding images! 



images = new Array(2);
images[0] = "<img src='images/testimonials/TaraBailey.jpg' border=\"0\">";
images[1] = "<img src='images/testimonials/PaulCheevers.jpg' border=\"0\">";
images[2] = "<img src='images/testimonials/DanaSherri.jpg' border=\"0\">";
index = Math.floor(Math.random() * images.length);
document.write(images[index]);


