// JavaScript Document

// On Click on a ThumbBox
function onThumbBoxClick(captionDisplay) {
	if(captionDisplay == 'none') {
		document.getElementById('caption').style.display = captionDisplay;	
	} else {
		return false;
	}
}