slider minValue doesn't seem to affect ui.slider.curValue

slider minValue doesn't seem to affect ui.slider.curValue


I have a slider in which I don't want the minimum value to be 0, but
instead start with something else. And as I drag the slider, I want
to update a span tag with the current value. It works great if my
minValue is 0, but not otherwise. In the case below, my minValue is
set to 65, but as soon as I start moving my slider around, it behaves
as if my minimum value is back to 0.
$('#superSlider').slider({
    minValue:65,
    maxValue:149,
    startValue:65,
    steps:15,
    slide: function(e, ui) {
        var distance = ui.slider.curValue;
        $('#spanSliderValue').text(distance);
    },
    change: function(e, ui) {
        alert('some stuff may happen now stuff happens now');
}
});
Am I approaching the minValue thing the wrong way?