Using swf's like html pages

I have been searching for this for awhile, but still can’t figure it out.

I have a webpage that consists of three swf’s. I want these swf’s to work like individual pages on an html site.
So I want each page to cover the one before it so that none of the buttons underneath are clickable.
Right now the swf’s are loading on top on each other but “invible” buttons appear on the top page where ever buttons were located on the previous swf’s.
The curser turns into a hand where there should not be a button.
The following is the code I am using for the contact button on the home page…

on (release) {
contents.loadMovie(“contact.swf”);
}

on (release) {unloadMovie(“home2.swf”);

}

What am I doing wrong?
Thanks for any help.
Christina

…perhaps you could put them all in seperate frames? or scenes?

Originaly that is how I had the site set up. Each page on a different scene. But the scenes got very large (because this is a photography site) and it was taking to long to load.
But thanks for your reply.
Christina

hmm… just make a holder mc that holdes everything loaded into the main movie.
then just
use mc.loadmovie();
then use mc.unloadmovie(); to unload the movie.
then after that use mc.removeMovieClip(); to stop all scripts that are running in that movie.
then after that use createEmptyMovieClip(); of the mc you just deleted its works really well like with my site.
www.angelfire.com/art2/booyaka/

It seems like the actionsript Booyaka suggested is similar to what I am using (stop me if I am wrong, I am very new to all this)
“contents” is my empty mc.

on (release) {
contents.loadMovie(“contact.swf”);
}

on (release) {unloadMovie(“home2.swf”);

}

In my original actionscript I did not put the ’ mc. ’ in front of 'unloadMovie’
as Booyaka suggests. I tried this but now ‘contact.swf’ does not load at all.
This is probally because I am not sure what to do with the createEmptyMovieClip(); part of the code.

This is what my code now looks like…

on (release) {
contents.loadMovie(“contact.swf”);
}

on (release) {
contents.unloadMovie(“home2.swf”);

}

on (release) {
createEmptyMovieClip(“home.swf”);
}

Thanks again for any help,
Christina