// This script was supplied free by Hypergurl 
// http://www.hypergurl.com <!-- // JavaScript to interpolate random images 
//into a page.
var icA = 6; // Number of alternative images
var xoxoA = new Array(icA); 
// Array to hold filenames 

xoxoA[0] = "images/testimonial1.gif";
xoxoA[1] = "images/testimonial2.gif";
xoxoA[2] = "images/testimonial3.gif"; 
xoxoA[3] = "images/testimonial4.gif";
xoxoA[4] = "images/testimonial5.gif"; 
xoxoA[5] = "images/testimonial6.gif";


function pickRandom(range) 
{ if (Math.random) return Math.round(Math.random() * (range-1)); else { var now 
= new Date(); return (now.getTime() / 1000) % range; } } // Write out an IMG tag, using a randomly-chosen image name.

var choiceA = pickRandom(icA); // -->



