HEEELP! Drop down menu problem

[COLOR=black]Hi, i need a decent drop down menu.[/COLOR]

I would like to use the rewind command inside a movie clip, with buttons or movie clips inside on the timeline with motion tween. this is reasonably straight forward.

But when i test the movie the buttons are not selectable as it is covered by the movieclip they are in.

How can i get these buttons to work within the movie clip. here is the code that goes on the first line of the actions layer. ( can be found in the kirupa tutorials).

//
stop();
this.onEnterFrame = function() {
if (rewind == true) {
prevFrame();
}
};
this.onRollOver = function() {
rewind = false;
play();
};
this.onRollOut = function() {
rewind = true;
};

This would look really good if i could make the buttons clickable/live and just linked to a url.