AS3 Menu Click Nav Sections

i there im Victor i need help, hope you can help me , im building i web page and i create 4 movie clips on the main page inside of those movie clips haves i simple button and i have this code.

stop();

this.addEventListener(MouseEvent.ROLL_OVER, rolover);
this.addEventListener(MouseEvent.ROLL_OUT, rollout);

function rolover(gunoi:MouseEvent):void {
stage.removeEventListener(Event.ENTER_FRAME, rewind);
this.gotoAndPlay(2);
}

function rollout(goz:MouseEvent):void {
stage.addEventListener(Event.ENTER_FRAME, rewind);
}
function rewind(rewinds:Event):void {
this.prevFrame();
}

This code makes that when i roll over the movie clips plays and rewind the animation when you roll out the movie, my question is there any way not to complicate to do the same thing but just click it on the movie clips.

example: when i click “home” shows me the movie and if i click the “services” button will rewind the home animation and show me the services new animation movie clip.

thanks for your time , hope to find some answers