// JavaScript Document
	$(function() {
	
			if( $("#content-holder").height() < $("#content-slider").height() ) {
				 //$("#content-slider").slider('destroy'); 
				 $("#content-slider").css('display','none') 
			 } else {
			$("#content-slider").slider({
			orientation: "vertical",
			range: "max",
			min: 0,
			max: 100,
			value: 60,
			change: handleSliderChange,
			slide: handleSliderSlide			
		})};

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

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

