
<!-- Begin
// This script was supplied free by Hypergurl
// http://www.hypergurl.com
    // JavaScript to interpolate random images into a page.
    var ic = 12;     // Number of alternative images
    var xoxo = new Array(ic);  // Array to hold filenames
        
xoxo[0] = "randomimages/clarabow01.jpg";
xoxo[1] = "randomimages/clarabow02.jpg";
xoxo[2] = "randomimages/clarabow03.jpg";
xoxo[3] = "randomimages/sal01.jpg";
xoxo[4] = "randomimages/alexander.jpg";
xoxo[5] = "randomimages/circus1.jpg";
xoxo[6] = "randomimages/circus20_big.jpg";
xoxo[7] = "randomimages/salome-russell0059.jpg";
xoxo[8] = "randomimages/salome-russell0024.jpg";
xoxo[9] = "randomimages/salome-beardsley02.jpg";
xoxo[10] = "randomimages/janegrey07detail.jpg";
xoxo[11] = "randomimages/quills0027.jpg";

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);
// End -->
