// JavaScript Document

<!--
var gallery = new Array();
gallery[0] = new Array("photo.jpg", "photo_106863.png", "photo_1664468.png","photo_1687619.png","photo_1770976.png","photo_18.png","photo_19.png","photo_1968275.png","photo_2024578.png","photo_3444580.png","photo_3734018.png","photo_3734036.png","photo_421824.png","photo_44589403.png","photo_lakewaysign.png","photo_statues.png");
gallery[1] = new Array("photo_jdtractor.jpg", "photo_kidsheep.jpg", "photo_mamababysheep.jpg", "photo_sheepdog.jpg", "photo_tractor.jpg", "photo_turkeys.jpg");


function pickImageFrom(whichGallery)
{
var idx = Math.floor(Math.random() * gallery[whichGallery].length);
document.write('<img alt="" class="middle" src="images/random_images/' + gallery[whichGallery][idx] + '">');
}
//-->

