//<!-- 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/home/random/01.jpg";
images[2] = new Image();
images[2].src = "images/home/random/02.jpg";
images[3] = new Image();
images[3].src = "images/home/random/03.jpg";
images[4] = new Image();
images[4].src = "images/home/random/04.jpg";
images[5] = new Image();
images[5].src = "images/home/random/05.jpg";

function swapPic() {
	var imgnum=Math.floor(Math.random()*(images.length - 1)) + 1;
	document.randimg.src = images[imgnum].src;
	document.randimg.alt = images[imgnum].alt;
	document.randimg.title = images[imgnum].title;
}
//  End -->