Getting buttons to work in a _mc? Help!

[size=1]Hello all, I’m trying to simplify my question, so please bear with me.[/size]
[size=1][/size]
[size=1]I’m trying to create a flash presentation that is controlled by a series of buttons that lay on a panel that slides in from the bottom, when the bottom-center of the screen is moused-over (similar to OSX menu). Now, I’m unable get the buttons that lay on the panel to function. The panel itself has an “onRollOver” function, which controls when the panel slides in. But it seems that that onRollOver function overwrites the functions of the buttons that lay in the panel movie clip. I’ll attach a SWF for a visual. The buttons (in the panel mc) should turn dark when moused-over/take you to different points on the _root timeline. Am I going about this issue the wrong way? Can anyone help me out to get the buttons working? Thanks in advance…[/size]
[size=1][/size]
[size=1][/size]
[size=1]The scripting for the “onRollOver panel” is:[/size]
[size=1][/size]
[size=1]stop();

this.onEnterFrame = function(){
if(rewind == true){
prevFrame();
}
}

this.onRollOver = function(){
rewind = false;
play();
}

this.onRollOut = function(){
rewind = true;
}[/size]
[size=1][/size]