Simple menu?

Hi there,

I have an mc(menu) where I placed a button in. When I do a rollover on the button the mc goes to frame2. There I placed 3 new buttons. When I do a rollout I won’t the menu to go to frame1 again(no prob so far).Now here is the problem when I get to frame2 the actions on the buttons won’t work.

must be some conflict with the mc and the buttons inside. Anyone can help out? Big thx in advance.

here’s my code.

from the root:
menu.onRollOver=function(){
this.gotoAndPlay(2);
}

menu.onRollOut=function(){
this.gotoAndPlay(1);
}

in the mc menu:

button1.onRelease=function(){
_root.mcforexample.gotoAndPlay(2);
}