function highlightCurrent(id){
		//remove all highlighting
		var aTags =  document.getElementsByTagName("a")  ;
		for (var x = 0; x < aTags.length; x++) {
			if (aTags[x].className == 'highlight')
				aTags[x].className = '';
	 	}
	 	
	 	//highlight current
	 	document.getElementById('thumb_link_' + id).className = 'highlight'
}

function photo_info(show) {
		//show the photo information
		if(show)
			document.getElementById('photoInformation').style.display = 'block';
		else
			document.getElementById('photoInformation').style.display = 'none';
}
