Draggable.create(".scrub", {type:"x", edgeResistance:1, bounds:".slider"});
// we are done at this point
// output the value
TweenMax.to(this, 10000, {alpha:10, onUpdate:update, repeat:-1});
function update() {
$ (+ 'px')
$('#xpos').val( $('.scrub').position().left );
$('#percentage').val( Math.round( $('.scrub').position().left*1000 / 2720 ) + '%' );
}