Parent / child movie clip buttons

I am a newbie trying to get this drop-down menu to work, I’ve followed several video tutorials and have pieced this together, but the tutorials mainly describe how to set up the stage but not how to add the functionality.

I’ve got the buttons working on the main navigation bar, but cannot figure how to get the dropdown menu buttons to work.

To clarify: There is code on frame 1 on the main timeline to enact a glow filter on the button MC’s which are part of NavBar_mc. This works fine.

The NavBar_mc contains 7 MC buttons and this navigation script on frame 1, this works as well:

home_mc.addEventListener(MouseEvent.CLICK, clickSection);
spa_mc.addEventListener(MouseEvent.CLICK, clickSection);
packages_mc.addEventListener(MouseEvent.CLICK, clickSection);
salon_mc.addEventListener(MouseEvent.CLICK, clickSection);
contact_mc.addEventListener(MouseEvent.CLICK, clickSection);
hours_mc.addEventListener(MouseEvent.CLICK,clickSe ction);
new_mc.addEventListener(MouseEvent.CLICK, clickSection);

function clickSection(event:MouseEvent):void {
trace('The ‘+ event.target.name + ’ button is clicked’);
MovieClip(parent).gotoAndStop(event.target.name);
}

There is a drop down menu with MC buttons. They are run this way:
This is on frame 1 of the dropDowns_mc:

stop ();

var spaFrame_btn:SimpleButton = new SimpleButton(spaFrame_btn);

spaFrame_btn.addEventListener(MouseEvent.MOUSE_OVER, goBackF);

function goBackF (event:MouseEvent):void {
gotoAndStop(1);
}

This is on frame 10 of the dropDowns_mc:
stop ();

var salonFrame_btn:SimpleButton = new SimpleButton(salonFrame_btn);

salonFrame_btn.addEventListener(MouseEvent.MOUSE_OVER, goBackX);

function goBackX (event:MouseEvent):void {
gotoAndStop(1);
}

I want them to gotoAndStop at a frame on the main timeline. If they could load into a blank MC that would be ok too.
I understand it is preferable to add the code to the main timeline, but I am very confused about the event.target.name and nested MC’s and AddChild/SetChildIndex, etc.

Do I need to add a child? Declare a MC with a var? Where should I put the code to run the dropDown menu buttons?

If anyone can set me in the right direction I would be greatly appreciative!