$(document).ready(function(){

	//slider init code
	$("#content-slider").slider({
	handle: '.handle',
    animate: true,
    change: handleSliderChange,
    slide: handleSliderSlide
  	});



});

//horizontal slider functions
function handleSliderChange(e, ui)
{
  var maxScroll = $("#sliderctas .dswrapper").attr("scrollWidth") - $("#sliderctas .dswrapper").width();
  $("#sliderctas .dswrapper").animate({scrollLeft: ui.value * (maxScroll / 100) }, 1000);
}

function handleSliderSlide(e, ui)
{
  var maxScroll = $("#sliderctas .dswrapper").attr("scrollWidth") - $("#sliderctas .dswrapper").width();
  $("#sliderctas .dswrapper").attr({scrollLeft: ui.value * (maxScroll / 100) });
}
