Easing thumbnails...urgent help please

Hi there,

I’m running to a deadline tomorrow and i need to finish this project. I need to make a linear presentation, and I need the thumbnails to move 110 px (width + space) everytime a new person gets loaded.

URL: http://www.earfocus.com/cdrom/flash/interface_01.html

This is what i’ve got at the moment:

  
MovieClip.prototype.easeX = function(distance) {
this.onEnterFrame = function() {
this._x -= 10;
if(this._x <= this._x + distance) {
delete this.onEnterframe
}
}
}

This code is obviously not working, since it’s made by me. Can someone tell me what i need to change? (probably a lot ! :))

Time is ticking, so any help would be greatly appreciated,
Thnx
Sintax