Nesting MX Photogallery from Kirupa Tutorial

Hello -

I’ve created the photo gallery using the tutorial at http://www.kirupa.com/developer/mx/photogallery.htm and it is working great - until I try to nest the movie in my existing flash site.

Hope you can help. Here goes.

The Setup:
I have 3 movies nested as follows:
[list]
[]temp1.swf - the main movie
[list]
[
]page3.swf - child of temp1 which is loaded into a movieclip instance on temp1 using loadMovie
[list]
[*]galleryKitchens.swf - child of page3 which, again, is loaded into a movieclip instance on page3
[/list]
[/list]
[/list]galleryKitchens was created step-by-step according to the above referenced tutorial except that I have added navigation buttons to scroll back and forth through the images. The buttons use the following:

 on (release) {
_root.changePhoto(1); 
}

I have a button instance on page3 with the following AS:

 on (release) {
bucket.loadMovie('galleryKitchens.swf');
}

bucket is the instance name of the movieclip into which galleryKitchens loads.

The Problem:
When I click the button, galleryKitchens is loaded into bucket, the first image (in pArray) is loaded, and the navigation buttons flash on the screen and then disappear. It’s as if the nav button layer is below the image layer.

The Shameless Plea For Help:
This thing is driving me NUTZ!!! I have been working on it for days to no avail. Any help will be GREATLY appreciated.

I’m new to the Flash thing so please go easy.

Thanks

B