function handleGallery() {
	if (document.getElementById('externalthumbs')) {
		var galleryContainer = document.getElementById('externalthumbs');
		var thumbDivs = new Array();
		thumbDivs = galleryContainer.firstChild.nextSibling.firstChild.getElementsByTagName('div');
		for (var i = 0; i < thumbDivs.length; i++) {
			thumbDivs[i].onclick = stopTheSlideShow;
		}
	}
}

function stopTheSlideShow() {
	var currentScrollTop = document.documentElement.scrollTop || document.body.scrollTop;
	if (currentScrollTop > 200) {
		//alert(currentScrollTop);
		if (document.documentElement.scrollTop) {
			document.documentElement.scrollTop = 200;
		} else {
			document.body.scrollTop = 200;
		}
	}
}