function handleChange(e, ui) {
    var maxScroll = $("#scroller").attr("scrollHeight") - $("#scroller").height();
    $("#scroller").animate({
		scrollTop: -ui.value * (maxScroll / 100)
    }, 1000);
}

function handleSlide(e, ui) {
    var maxScroll = $("#scroller").attr("scrollHeight") - $("#scroller").height();
    $("#scroller").attr({
		scrollTop: -ui.value * (maxScroll / 100)
	});
}

$(document).ready(function() {
	$('a.secondaryImage').lightBox();
	$('.productDetailThumb').click(function() {
		var productID = '#' + $(this).attr('rel');
		$('.productDetailThumb').removeClass("selected");
		$(this).addClass("selected");
		$('.productDetailBox:visible').fadeOut(function() {
			$(productID).fadeIn();
		});
	});
});
