<!--
/*
Copyright 2007 Ron Boyd, Orion's Web
URL: http://www.orionsweb.net
Free to distribute, but please keep this comment. Thanks!
*/

// initialize the array do not edit
var images = new Array()

// specify the image files (follow the pattern)
images[0] = '/images/wully/wully1.gif'
images[1] = '/images/wully/wully2.gif'
images[2] = '/images/wully/wully3.gif'
images[3] = '/images/wully/wully4.gif'

var j = 0
var p = images.length;

var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = images[i]
}

var pickimage = Math.round(Math.random()*(p-1));
function displayimage(){
document.write('<div align="center"><img src="'+images[pickimage]+'" id="wully" /></div>');
}
//-->