Loading SWF into blank MC problem

The site im building has one blank MC container that I call the other swf’s according to the appropriate link selected. If I click one link:

[color=blue]on(release){
this.Container.loadMovie(“Mov1.swf”);
}[/color]

Then Mov1.swf is now playing in the main site. However, when I click a different link with this:

[color=blue]on(release){
this.Container.loadMovie(“Mov2.swf”);
}[/color]

The Mov1.swf movie vanishes so that it can now play Mov2.swf

What im trying to do is make it so that I can still SEE Mov1.swf for a bit while I click the second link to load Mov2.swf so it doesn’t just vanish suddenly.

If that doesn’t make any sence let me know so i can toss an example up for everyone to look at.

If anyone has any suggestions please let me know.

Thanks!!!