Slider Minimum Questions...

Slider Minimum Questions...


Basically what I want to do is have the handle of the slider widget to
have a minimum, but still display all the way down to zero. So for
example I don't want the user to be able to select anything below eg.
80 but I want the slider to still display 0 -80. Is there a way to do
this. I tried this, but it doesn't work:
slide: function(event,ui) {
            if (ui.value < 80) {
                $('#slide').slider('option','value',80);
            }
        }
Thanks for any help.