var randomTWD = 0;
var DoIt = 0;
images = new Array;
images[1] = new Image();
images[1].src = "/themes/sobc/images/testimonial-ben.jpg";
images[1].title = "Ben Testimonial";
images[2] = new Image();
images[2].src = "/themes/sobc/images/testimonial-carol.jpg";
images[2].title = "Carol Testimonial";
images[3] = new Image();
images[3].src = "/themes/sobc/images/testimonial-erika.jpg";
images[3].title = "Erika Testimonial";
images[4] = new Image();
images[4].src = "/themes/sobc/images/testimonial-joe.jpg";
images[4].title = "Joe Testimonial";
images[5] = new Image();
images[5].src = "/themes/sobc/images/testimonial-mark.jpg";
images[5].title = "Mark Testimonial";
images[6] = new Image();
images[6].src = "/themes/sobc/images/testimonial-roseanne.jpg";
images[6].title = "Roseanne Testimonial";
function TWDpics() {
var imgnum = images.length - 1;
do {
var randnum = Math.random();
randomTWD = Math.round((imgnum - 1) * randnum) + 1;
} while (randomTWD == DoIt);
DoIt = randomTWD;
document.ImageHolder.src = images[DoIt].src;
document.ImageHolder.title = images[DoIt].title;
}
