// Drummy's Random Image Script
// (C) 2006 Paul Voth, Drummy.org

function get_random()
{

// Number of images at the end of the line below.
var ranNum= Math.floor(Math.random()*13);
return ranNum;
}
var whichImg=get_random();

function show_image() {

// Add your images here.
// Make sure that Array(X) has the number
// of images that you want to include
var img=new Array(13)
img[0]="img/home_l4.jpg";
img[1]="img/home_l5.jpg";
img[2]="img/home_l10.jpg";
img[3]="img/home_l16.jpg";
img[4]="img/home_s1.jpg";
img[5]="img/home_s2.jpg";
img[6]="img/home_s7.jpg";
img[7]="img/home_t2.jpg";
img[8]="img/home_t7.jpg";
img[9]="img/home_t11.jpg";
img[10]="img/home_time3.jpg";
img[11]="img/home_time1.jpg";
img[12]="img/home_time10.jpg";
 // Here the actual displaying of the image is taking place.
document.write("<img id='wolfImage' name='homeImage' src='");
document.write(img[whichImg]);
document.write("' border='0' />");
}


function show_image2() {

var img=new Array(12)
img[0]="img/home_l5.jpg";
img[1]="img/home_l10.jpg";
img[2]="img/home_l16.jpg";
img[3]="img/home_s1.jpg";
img[4]="img/home_s2.jpg";
img[5]="img/home_s7.jpg";
img[6]="img/home_t2.jpg";
img[7]="img/home_t7.jpg";
img[8]="img/home_t11.jpg";
img[9]="img/home_time3.jpg";
img[10]="img/home_time1.jpg";
img[11]="img/home_time10.jpg";
 // Here the actual displaying of the image is taking place.
document.write("<img id='wolfImage' style='width:350px; margin-top:40px' src='");
document.write(img[whichImg]);
document.write("' border='0' />");
}