<!--
// the following function provides auto-refresh and load
// to help keep divs on the gallery page from overlapping
// Important: you must have 2 divs with the following IDs to use this script: centergallery, leftgallery
//var origCenterHeight = document.getElementById('centergallery').offsetHeight;
//function setGalleryHeight() {
//	contentCenterObj = document.getElementById('centergallery');
//	contentLeftObj = document.getElementById('leftgallery');
//	centerHeight = contentCenterObj.offsetHeight;
//	leftHeight = contentLeftObj.offsetHeight;
//	if(centerHeight>leftHeight){
//		contentLeftObj.style.height = contentCenterObj.offsetHeight;
//	} else {
//		//contentCenterObj.style.height = origCenterHeight;
//	}
//}
function hiliteItem(nItemNum){
	itemName = "item" + nItemNum;
	document.getElementById(itemName).style.backgroundColor = "#426BA4";
}
function unhiliteItem(nItemNum){
	itemName = "item" + nItemNum;
	document.getElementById(itemName).style.backgroundColor = "";
}

//window.onload = function() { setGalleryHeight(); }
//window.onresize = function() { setGalleryHeight(); }
//-->