MC with rollover help please!

I have an MC with an animation and autoscroll code on it. I only want the autoscroll to be activated when the animation has played through to the end. Here’s my code…

if (this.employmenttext_mc.play = true);

_root.onEnterFrame = function () {
if(_root._xmouse > 328 && _root._xmouse < 800 && _root._ymouse > 130 && _root._ymouse < 540)
this.employmenttext_mc._y = -(695/409 * _root._ymouse) +335;
this.employmenttext_mc.onRollOut = function() {
if (this.rewind = true) {
this._y = 130};
}
}

Can you spot the mistake? If you can help me see where I’ve gone wrong that would be great.

Cheers

Luke