// This script was supplied free by Hypergurl
// http://www.hypergurl.com
<!--
// JavaScript to interpolate random images into a page.
var ic = 2; // Number of alternative images
var xoxo = new Array(ic); // Array to hold filenames

xoxo[0] = "images/other/spwantsu.png";
xoxo[1] = "images/other/spwantsu.png";



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);
// -->

aus1 = new Image();
aus1.src = "images/other/spwantsu.png";
an1 = new Image();
an1.src = "images/other/spwantsu.png";
aus2 = new Image();
aus2.src = "images/other/spwantsu.png";
an2 = new Image();
an2.src = "images/other/spwantsu.png";
