var folder = "images/";

var images = new Array();
images[0] = folder + "testimonial_god.jpg";
images[1] = folder + "testimonial_clinton.jpg";
images[2] = folder + "testimonial_terrorist.jpg";
images[3] = folder + "testimonial_farrakhan.jpg";
images[4] = folder + "testimonial_popeBenedict.jpg";
images[5] = folder + "testimonial_rather.jpg";
//images[6] = folder + "testimonial_gwbush.jpg";

var randNum = Math.floor(Math.random()*images.length);

document.write("<TD WIDTH=488 HEIGHT=90 VALIGN=BOTTOM STYLE=\"background:url(" + images[randNum] + ") no-repeat\">");
