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