mp3 progress bar scrubber

After getting the progress bar working and implementing the scrubber part, I notice that the further I skip into the song, the further away the song gets from where I click. IE when I click about halfway along the bar it skips to nearly the end of the song.

(declared earlier)
blargCast.loaded = theSource.getBytesLoaded()/theSource.getBytesTotal();

scrubber_mc.onPress = function(){
var pos = scrubber_mc._xmouse/100;
blargCast.pauseTime = pos * blargCast.duration/blargCast.loaded;
blargCast.resume ();
}

See anything wrong? I’ve tried messing with the orientation of the bar to the center of the movie clip but it doesn’t seem to do anything but aggravate the situation.

Any suggestions or examples of sound scrubbers that function properly?

Edit: Oh yeah, its Flash MX Pro 2004