// Random Picture routine

randPicture = new Array ("/images/random/American-Classics.gif","/images/random/big-dog-pic.gif","/images/random/Breakfast-on-the-Run.gif","/images/random/cat-pic.gif","/images/random/chocolate-lovers-nc.gif","/images/random/little-dog-pic.gif","/images/random/movie-night.gif","/images/random/new-home-pic.gif","/images/random/Ultimate-College-2.gif");

picCount = randPicture.length;

function randomPicture() {
	if (document.images) {
		randomNum = Math.floor(Math.random() * picCount);

		document.homePicture.src = randPicture[randomNum];
	}

}