Moving buttons

Hey

I’ve created a mc with some buttons in it. It’s a MC that should move when you roll your mouse over it. It has all sorts of different buttons but when I roll over the mc it moves to the right. Some kind of rolling panel. So the panel rolls out and you are supposed to be able to click on the buttons on the panel. But when the panel rolls out you can’t click the buttons anymore. The code I used to make the panels + buttons move:

[AS]
on (rollOver) {
gotoAndPlay(2);
}
on (rollOut) {
gotoAndPlay(16);
}
[/AS]

So can anyone help me?