Alright here's the code, I probably just need some fresh eyes on it. This is just for one of the sliders since I doubt anyone would need to see code for both since they're essentially the same. Sadly I can't work on this in the current lab I'm in since there is no Flash installed but discussions about it never huts :P.
Code:
blurSlider.track_mc.onMouseDown = function() {
startDrag(this,true,0,0,100,0);
}
blurSlider.track_mc.onRelease = function() {
stopDrag();
}
Also in case you're wondering, yes blurSlider is on the main timeline and yes track_mc is inside of it. So the paths are all correct.