function handleSliderChange(e, ui)
{
  var maxScroll = jQuery("#project-slider-section").prop("scrollWidth") - 
                  jQuery("#project-slider-section").width();
  jQuery("#project-slider-section").animate({scrollLeft: ui.value * 
     (maxScroll / 100) }, 1000);
	 //alert( "SCROLL:  " +jQuery("#project-slider-section").width() + " WIDTH: " +     jQuery("#project-slider-section").width()  );
}

function handleSliderSlide(e, ui)
{
  var maxScroll = jQuery("#project-slider-section").prop("scrollWidth") - 
                  jQuery("#project-slider-section").width();
  jQuery("#project-slider-section").attr({scrollLeft: ui.value * (maxScroll / 100) });
  //alert( "SCROLL:  " +jQuery("#project-slider-section").width() + " WIDTH: " +     jQuery("#project-slider-section").width()  );
  
}


