

// Drummy's Random Image Script
// (C) 2006 Paul Voth, Drummy.org
// Please leave this copyright notice
// In the script if you're gonna use it :)

function get_random2()
{

// Make sure that random()*X) has the correct
// number. The number of images defined below.
var ranNum2= Math.floor(Math.random()*4);
return ranNum2;
}
var whichImg2=get_random2();

function show_image2() {

// Add your images here.
// Make sure that Array(X) has the number
// of images that you want to include
var img=new Array(4)
img[0]="http://www.yourbackupuk.com/quotes/flash/juliandavis.png";
img[1]="http://www.yourbackupuk.com/quotes/flash/elansilver.png";
img[2]="http://www.yourbackupuk.com/quotes/flash/eugeneraine.png";
img[3]="http://www.yourbackupuk.com/quotes/flash/drmoody.png";
 // Here the actual displaying of the image is taking place.
document.write("<img src='");
document.write(img[whichImg2]);
document.write("' border='0' />");
}
