Slider Steps

Slider Steps

Hi guys

I am using jQuery 1.3 and theming.

I am trying to implment a vertical slider with ranges between 0 and 200, with steps of 50.
My problem is that I need the first step to start at 25 and the last step to end at 175.

Any help is greatly appreciated.

$('#slider').slider({
animate:true,
width:"50px",
orientation:"vertical",
range: "min",
values: [25],
min:0,
max:200,
step:50,
slide: function(event, ui) {
$("#value").html(ui.value);
}
});