Drop down menu external swf link

I used the drop down style roll over menus from the kirupa tutorial on the latest site im working on. All the buttons load external swfs fine except for the one with the drop down menu. My theory is the invis button is blocking the user from pressing it, could this be possible? Here’s the files, im trying to get the link under the “training” menu “puppy head start” to work, thanks for the help guys im stumped.

another theory of mine is that since its a MC with buttons embedded it might not recongize the container movie clip?

http://www.cortesmejias.com/site.zip

bump

Try to address everything from the _root timeline.

On your dropdown buttons, put something like:
[AS]
on(release){
loadMovie(“puppystart.swf”, _root.clipHolder);
}
[/AS]
Do you get any errors in the output window?