/*  <script language="JavaScript">

// 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_random_left2()
{

// Make sure that random()*X) has the correct
// number. The number of images defined below.
var ranNum_left2= Math.floor(Math.random()*50);
return ranNum_left2;
}
var whichImg_left2=get_random_left2();

function get_random_center2()
{

// Make sure that random()*X) has the correct
// number. The number of images defined below.
var ranNum_center2= Math.floor(Math.random()*50);
return ranNum_center2;
}
var whichImg_center2=get_random_center2();

function get_random_right2()
{

// Make sure that random()*X) has the correct
// number. The number of images defined below.
var ranNum_right2= Math.floor(Math.random()*50);
return ranNum_right2;
}
var whichImg_right2=get_random_right2();

function show_image_left2() {

// Add your images here.
// Make sure that Array(X) has the number
// of images that you want to include
var img=new Array(50)
img[0]="images/hey/ll01.jpg";
img[1]="images/hey/ll02.jpg";
img[2]="images/hey/ll03.jpg";
img[3]="images/hey/ll04.jpg";
img[4]="images/hey/ll05.jpg";
img[5]="images/hey/ll06.jpg";
img[6]="images/hey/ll07.jpg";
img[7]="images/hey/ll08.jpg";
img[8]="images/hey/ll09.jpg";
img[9]="images/hey/ll10.jpg";
img[10]="images/hey/ll11.jpg";
img[11]="images/hey/ll12.jpg";
img[12]="images/hey/ll13.jpg";
img[13]="images/hey/ll14.jpg";
img[14]="images/hey/ll15.jpg";
img[15]="images/hey/ll16.jpg";
img[16]="images/hey/ll17.jpg";
img[17]="images/hey/ll18.jpg";
img[18]="images/hey/ll19.jpg";
img[19]="images/hey/ll20.jpg";
img[20]="images/hey/ll21.jpg";
img[21]="images/hey/ll22.jpg";
img[22]="images/hey/ll23.jpg";
img[23]="images/hey/ll24.jpg";
img[24]="images/hey/ll25.jpg";
img[25]="images/hey/ll26.jpg";
img[26]="images/hey/ll27.jpg";
img[27]="images/hey/ll28.jpg";
img[28]="images/hey/ll29.jpg";
img[29]="images/hey/ll30.jpg";
img[30]="images/hey/ll31.jpg";
img[31]="images/hey/ll32.jpg";
img[32]="images/hey/ll33.jpg";
img[33]="images/hey/ll34.jpg";
img[34]="images/hey/ll35.jpg";
img[35]="images/hey/ll36.jpg";
img[36]="images/hey/ll37.jpg";
img[37]="images/hey/ll38.jpg";
img[38]="images/hey/ll39.jpg";
img[39]="images/hey/ll40.jpg";
img[40]="images/hey/ll41.jpg";
img[41]="images/hey/ll42.jpg";
img[42]="images/hey/ll43.jpg";
img[43]="images/hey/ll44.jpg";
img[44]="images/hey/ll45.jpg";
img[45]="images/hey/ll46.jpg";
img[46]="images/hey/ll47.jpg";
img[47]="images/hey/ll48.jpg";
img[48]="images/hey/ll49.jpg";
img[49]="images/hey/ll50.jpg";
 // Here the actual displaying of the image is taking place.
document.write("<img src='");
document.write(img[whichImg_left2]);
document.write("' border='1' style='width: 320px; height: 240px;' />");
}

function show_image_center2() {

// Add your images here.
// Make sure that Array(X) has the number
// of images that you want to include
var img=new Array(50)
img[0]="images/hey/cc01.jpg";
img[1]="images/hey/cc02.jpg";
img[2]="images/hey/cc03.jpg";
img[3]="images/hey/cc04.jpg";
img[4]="images/hey/cc05.jpg";
img[5]="images/hey/cc06.jpg";
img[6]="images/hey/cc07.jpg";
img[7]="images/hey/cc08.jpg";
img[8]="images/hey/cc09.jpg";
img[9]="images/hey/cc10.jpg";
img[10]="images/hey/cc11.jpg";
img[11]="images/hey/cc12.jpg";
img[12]="images/hey/cc13.jpg";
img[13]="images/hey/cc14.jpg";
img[14]="images/hey/cc15.jpg";
img[15]="images/hey/cc16.jpg";
img[16]="images/hey/cc17.jpg";
img[17]="images/hey/cc18.jpg";
img[18]="images/hey/cc19.jpg";
img[19]="images/hey/cc20.jpg";
img[20]="images/hey/cc21.jpg";
img[21]="images/hey/cc22.jpg";
img[22]="images/hey/cc23.jpg";
img[23]="images/hey/cc24.jpg";
img[24]="images/hey/cc25.jpg";
img[25]="images/hey/cc26.jpg";
img[26]="images/hey/cc27.jpg";
img[27]="images/hey/cc28.jpg";
img[28]="images/hey/cc29.jpg";
img[29]="images/hey/cc30.jpg";
img[30]="images/hey/cc31.jpg";
img[31]="images/hey/cc32.jpg";
img[32]="images/hey/cc33.jpg";
img[33]="images/hey/cc34.jpg";
img[34]="images/hey/cc35.jpg";
img[35]="images/hey/cc36.jpg";
img[36]="images/hey/cc37.jpg";
img[37]="images/hey/cc38.jpg";
img[38]="images/hey/cc39.jpg";
img[39]="images/hey/cc40.jpg";
img[40]="images/hey/cc41.jpg";
img[41]="images/hey/cc42.jpg";
img[42]="images/hey/cc43.jpg";
img[43]="images/hey/cc44.jpg";
img[44]="images/hey/cc45.jpg";
img[45]="images/hey/cc46.jpg";
img[46]="images/hey/cc47.jpg";
img[47]="images/hey/cc48.jpg";
img[48]="images/hey/cc49.jpg";
img[49]="images/hey/cc50.jpg";
 // Here the actual displaying of the image is taking place.
document.write("<img src='");
document.write(img[whichImg_center2]);
document.write("' border='1' style='width: 320px; height: 240px;' />");
}

function show_image_right2() {

// Add your images here.
// Make sure that Array(X) has the number
// of images that you want to include
var img=new Array(50)
img[0]="images/hey/rr01.jpg";
img[1]="images/hey/rr02.jpg";
img[2]="images/hey/rr03.jpg";
img[3]="images/hey/rr04.jpg";
img[4]="images/hey/rr05.jpg";
img[5]="images/hey/rr06.jpg";
img[6]="images/hey/rr07.jpg";
img[7]="images/hey/rr08.jpg";
img[8]="images/hey/rr09.jpg";
img[9]="images/hey/rr10.jpg";
img[10]="images/hey/rr11.jpg";
img[11]="images/hey/rr12.jpg";
img[12]="images/hey/rr13.jpg";
img[13]="images/hey/rr14.jpg";
img[14]="images/hey/rr15.jpg";
img[15]="images/hey/rr16.jpg";
img[16]="images/hey/rr17.jpg";
img[17]="images/hey/rr18.jpg";
img[18]="images/hey/rr19.jpg";
img[19]="images/hey/rr20.jpg";
img[20]="images/hey/rr21.jpg";
img[21]="images/hey/rr22.jpg";
img[22]="images/hey/rr23.jpg";
img[23]="images/hey/rr24.jpg";
img[24]="images/hey/rr25.jpg";
img[25]="images/hey/rr26.jpg";
img[26]="images/hey/rr27.jpg";
img[27]="images/hey/rr28.jpg";
img[28]="images/hey/rr29.jpg";
img[29]="images/hey/rr30.jpg";
img[30]="images/hey/rr31.jpg";
img[31]="images/hey/rr32.jpg";
img[32]="images/hey/rr33.jpg";
img[33]="images/hey/rr34.jpg";
img[34]="images/hey/rr35.jpg";
img[35]="images/hey/rr36.jpg";
img[36]="images/hey/rr37.jpg";
img[37]="images/hey/rr38.jpg";
img[38]="images/hey/rr39.jpg";
img[39]="images/hey/rr40.jpg";
img[40]="images/hey/rr41.jpg";
img[41]="images/hey/rr42.jpg";
img[42]="images/hey/rr43.jpg";
img[43]="images/hey/rr44.jpg";
img[44]="images/hey/rr45.jpg";
img[45]="images/hey/rr46.jpg";
img[46]="images/hey/rr47.jpg";
img[47]="images/hey/rr48.jpg";
img[48]="images/hey/rr49.jpg";
img[49]="images/hey/rr50.jpg";
 // Here the actual displaying of the image is taking place.
document.write("<img src='");
document.write(img[whichImg_right2]);
document.write("' border='1' style='width: 320px; height: 240px;' />");
}
