Button loading 2 Separate SWFs

Hi, I have having a problem using a button to load three separate SWF files, 2 with transitions and one without a transition. For some reason when the button is pressed it loads the last SWF file in both MovieClips that have transitions. If anyone could give me some help I would really appreciate it. Here is my button code.

on (rollOver) {
this.mc_facials.gotoAndPlay(“2”);
}
on (rollOut) {
this.mc_facials.gotoAndPlay(“12”);
}

on (release) {
_root.container.Menu_Container.loadMovie(“spa_facials_menu.swf”);
}

on (release) {
if (_root.currMovie == undefined) {
_root.currMovie = “spa_gradienttext_1”;
_root.container.GradientContainer.loadMovie(“spa_gradienttext_1.swf”);
} else if (_root.currMovie != “spa_gradienttext_1”) {
if (_root.container.GradientContainer._currentframe >= _root.container.GradientContainer.midframe) {
_root.currMovie = “spa_gradienttext_1”;
_root.container.GradientContainer.play();
}
}
}

on (release) {
if (_root.currMovie == undefined) {
_root.currMovie = “spa_toplinetext_1”;
_root.container.TopLineContainer.loadMovie(“spa_toplinetext_1.swf”);
} else if (_root.currMovie != “spa_toplinetext_1”) {
if (_root.container.TopLineContainer._currentframe >= _root.container.TopLineContainer.midframe) {
_root.currMovie = “spa_toplinetext_1”;
_root.container.TopLineContainer.play();
}
}
}

Thanks for the help,
Brian