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