// This script was supplied free by Hypergurl
// http://www.hypergurl.com
<!--
    // JavaScript to interpolate random images into a page.
    var ic = 21;     // Number of alternative images
    var xoxo = new Array(ic);  // Array to hold filenames
        
xoxo[0] = "/v2/newimages/quotes/1.gif";
xoxo[1] = "/v2/newimages/quotes/2.gif";
xoxo[2] = "/v2/newimages/quotes/3.gif";
xoxo[3] = "/v2/newimages/quotes/4.gif";
xoxo[4] = "/v2/newimages/quotes/5.gif";
xoxo[5] = "/v2/newimages/quotes/6.gif";
xoxo[6] = "/v2/newimages/quotes/7.gif";
xoxo[7] = "/v2/newimages/quotes/8.gif";
xoxo[8] = "/v2/newimages/quotes/9.gif";
xoxo[9] = "/v2/newimages/quotes/10.gif";
xoxo[10] = "/v2/newimages/quotes/11.gif";
xoxo[11] = "/v2/newimages/quotes/12.gif";
xoxo[12] = "/v2/newimages/quotes/13.gif";
xoxo[13] = "/v2/newimages/quotes/14.gif";
xoxo[14] = "/v2/newimages/quotes/15.gif";
xoxo[15] = "/v2/newimages/quotes/16.gif";
xoxo[16] = "/v2/newimages/quotes/17.gif";
xoxo[17] = "/v2/newimages/quotes/18.gif";
xoxo[18] = "/v2/newimages/quotes/19.gif";
xoxo[19] = "/v2/newimages/quotes/20.gif";
xoxo[20] = "/v2/newimages/quotes/21.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 choice = pickRandom(ic);
// -->
