

<!-- This script and many more are available free online at -->
<!-- The Javascript Source!! http://javascript.internet.com -->

<!-- Begin
// Set up the image files to be used.
var theImages = new Array()
var theImagesInternal = new Array()// do not change this
// To add more image files, continue with the
// pattern below, adding to the array.

theImages[0] = 'images/photobar/cranberry.jpg'
theImages[1] = 'images/photobar/beach.jpg'
theImages[2] = 'images/photobar/hyannisport-baseball.jpg'
theImages[3] = 'images/photobar/fire-buoy.jpg'
theImages[4] = 'images/photobar/sun.jpg'
theImages[5] = 'images/photobar/swans.jpg'
theImages[6] = 'images/photobar/lightship-sailboat.jpg'

theImagesInternal[0] = '../images/photobar/cranberry.jpg'
theImagesInternal[1] = '../images/photobar/beach.jpg'
theImagesInternal[2] = '../images/photobar/hyannisport-baseball.jpg'
theImagesInternal[3] = '../images/photobar/fire-buoy.jpg'
theImagesInternal[4] = '../images/photobar/sun.jpg'
theImagesInternal[5] = '../images/photobar/swans.jpg'
theImagesInternal[6] = '../images/photobar/lightship-sailboat.jpg'

// do not edit anything below this line

var j = 0
var p = theImages.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theImages[i]
}
var whichImage = Math.round(Math.random()*(p-1));
function showImage(){
document.write('<img src="'+theImages[whichImage]+'" class="right" alt="photo: cape cod">');
}
function showImageInternal(){
	document.write('<img src="'+theImagesInternal[whichImage]+'" class="right" alt="photo: cape cod">');
	}

//  End -->


