// 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_random1()
{

// Make sure that random()*X) has the correct
// number. The number of images defined below.
var ranNum1= Math.floor(Math.random()*3);
return ranNum1;
}
var whichImg1=get_random1();

function show_image1() {

// Add your images here.
// Make sure that Array(X) has the number
// of images that you want to include
var img=new Array(3)
img[0]="http://www.yourbackupuk.com/quotes/flash/barbarakingston.png";
img[1]="http://www.yourbackupuk.com/quotes/flash/clarerichmond.png";
img[2]="http://www.yourbackupuk.com/quotes/flash/reynoldscolmanbradley.png";
 // Here the actual displaying of the image is taking place.
document.write("<img src='");
document.write(img[whichImg1]);
document.write("' border='0' />");
}