$(document).ready(function(){
  $("#scrollerDemocontent-slider").slider({
    animate: true,
    handle: ".scrollerDemocontent-slider-handle",
    change: handleSliderChange,
    slide: handleSliderSlide
  });
});

function handleSliderChange(e, ui)
{
  var maxScroll = $("#scrollerDemocontent-scroll").attr("scrollWidth") - $("#scrollerDemocontent-scroll").width();
  $("#scrollerDemocontent-scroll").animate({scrollLeft: ui.value * (maxScroll / 100) }, 1000);
}

function handleSliderSlide(e, ui)
{
  var maxScroll = $("#scrollerDemocontent-scroll").attr("scrollWidth") - $("#scrollerDemocontent-scroll").width();
  $("#scrollerDemocontent-scroll").attr({scrollLeft: ui.value * (maxScroll / 100) });
}
