// Find last clicked collection thumbnail and scroll it into view.
window.onload = scrollTn;
function scrollTn() {
	if (document.getElementById("tn"+ imageId)) {
		var offSetLeft = document.getElementById("tn"+ imageId).offsetLeft;
		document.getElementById("gallerythumbnails").scrollLeft = offSetLeft - 200;
		}
}

