Load movie when entering a frame

Hi

I followed a tutorial in this web site so that you can apply navigation to link many .swf files together

http://www.kirupa.com/developer/mx/full_site.htm

This worked fine but my movie is slightly different. I start with
information on the first page (which doesn’t apply in this demo .fla file) which then needs to disappear when I click on
other navigation. With the code I learnt, I used my 1st page which has content in it, to load other pages. These pages load over the top of the intro content

What I think i need to do is start with a blank page which loads the first page in straight away and then when I click on other navigation it shows only that .swf file

Does this make sense

I need something like a blank page with the menu and on frame 1 it say

on(enterFrame) {
_root.contents.loadMovie(“intro.swf”);
}

So that then I can load other pages

unless ofcourse there is a way to just go to a blank frame of my intro content and load the other .swf files

Thank you for your help.