<!-- Original:  Nicholas Lupien (smylex@aol.com) -->

<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- Begin
var rand1 = 0;
var useRand = 0;

images = new Array;
images[1] = new Image();
images[1].src = "images/TFB-pop-bottle-image-with-frame.png";
images[2] = new Image();
images[2].src = "images/TFB_small_dark_faces_cropped_web.png";
images[3] = new Image();
images[3].src = "images/TFB_jamming_small.png";
images[4] = new Image();
images[4].src = "images/TFB_Holding_Lennon_small.png";


function swapPic() {
var imgnum = images.length - 1;
do {
var randnum = Math.random();
rand1 = Math.round((imgnum - 1) * randnum) + 1;
  } 
while (rand1 == useRand);
useRand = rand1;
document.randimg.src = images[useRand].src;
thetimer = setTimeout("swapPic()", 5000);

}
//  End -->
