// This script was supplied free by Hypergurl
// http://www.hypergurl.com
<!--
    // JavaScript to interpolate random images into a page.
    var ic = 9;     // Number of alternative images
    var xoxo = new Array(ic);  // Array to hold filenames
        
xoxo[0] = "/images/banner_01.gif";
xoxo[1] = "/images/banner_02.gif";
xoxo[2] = "/images/banner_04.gif";
xoxo[3] = "/images/banner_04.gif";
xoxo[4] = "/images/banner_05.gif";
xoxo[5] = "/images/banner_06.gif";
xoxo[6] = "/images/banner_07.gif";
xoxo[7] = "/images/banner_08.gif";
xoxo[8] = "/images/banner_09.gif";
xoxo[9] = "/images/banner_10.gif";
xoxo[10] = "/images/banner_11.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);
// -->