$(document).ready(function(){
  $("#content-slider").slider({
    animate: true,
    change: handleSliderChange,
    slide: handleSliderSlide
  });
});

function handleSliderChange(e, ui)
{
  var maxScroll = $("#content-scroll").attr("scrollWidth") - $("#content-scroll").width();
  var sliderWidth=$("#content-slider").width();
 // alert("in 1 "+sliderWidth);
 // maxScroll=0;
  $("#content-scroll").animate({scrollLeft: ui.value * (maxScroll / 100) }, 1000);
}

function handleSliderSlide(e, ui)
{
  var maxScroll = $("#content-scroll").attr("scrollWidth") - $("#content-scroll").width();
  var sliderWidth=$("#content-slider").width();
 //alert("in 2 "+sliderWidth);
 //maxScroll=0;
  $("#content-scroll").attr({scrollLeft: ui.value * (maxScroll / 100) });
}
