<!--
images = new Array(4);

images[0] = "<img src='http://www.rocklake.org/images/randompics/randpic1.png' alt='Sunrise from Korth Bay.' class='peoplePic' width='1000px' height='370px'/>";

images[1] = "<img src='http://www.rocklake.org/images/randompics/Nsunset_boat.png' alt='Sunset from the north end.' class='peoplePic' width='1000px' height='370px'/>";

images[2] = "<img src='http://www.rocklake.org/images/randompics/crane.png' alt='Crane at the north end.' class='peoplePic' width='1000px' height='370px'/>";

images[3] = "<img src='http://www.rocklake.org/images/randompics/ice_boat.png' alt='Ice boat at north end.' class='peoplePic' width='1000px' height='370px'/>";

index = Math.floor(Math.random() * images.length);

document.write(images[index]);
// -->


