Auto Rotate for Sliding Menu

Ok I am referring to this tutorial: http://www.kirupa.com/developer/flash5/slidingmenu.htm

I have it working and customized to my needs, but I was wondering if someone could help me add some sort of auto-rotate. There has to be an easy way to do it… I just rarely work in flash so my actionscript skills are teh suckz0rz.

Thanks guys.

So here’s what the first button does

on (press) {
    _root.xnew = _root.mask2._x+3.44*707/2;
}

Here’s the first frame of the whole movie. This is all for the slide I guess:

stop () ;
MovieClip.prototype.move2 = function () {
dest = _root.xnew ;
pos = this._x ;
vel = (dest-pos)/7 ;
this._x += vel ;
}

MovieClip.prototype.move = function () {
dest = _root.xnew ;
pos = this._x ;
vel = (dest-pos)/7 ;
this._x += vel ;
}

and then this is on the mask itself, it also sets the initial state when it loads for the first time

onClipEvent (load) {
_root.xnew = _root.mask2._x + (7-1)*405/2 ;
}
onClipEvent (enterFrame) {
move () ;
}