//crop and/or resize photos to 394x314

var delayInSeconds = 3;
var photoLibrary = {

	photos:	[
	
		 {photoUrl:"photos/20100925_0180_AlgonquinSummitsm_001.jpg"}
		,{photoUrl:"photos/20110122_0891_FireBuilding.jpg"}
		,{photoUrl:"photos/20110212_1170sm.jpg"}
		,{photoUrl:"photos/IMG_0248.jpg"}
		,{photoUrl:"photos/IMG_1432.jpg"}
		,{photoUrl:"photos/P1100889crop.jpg"}
		,{photoUrl:"photos/P1100606sm.jpg"}

	]//end photos array
	
};//end photo library

var photoIndex = -1;
function loadPhoto()
{
	if (photoIndex < 0) {
		photoIndex = Math.floor(Math.random() * photoLibrary.photos.length);
	}
	else {
		photoIndex++;
	}

	$("#highlight-photo").attr("src",photoLibrary.photos[photoIndex % photoLibrary.photos.length].photoUrl);
	setTimeout("loadPhoto()", delayInSeconds * 1000);
}

