Problems with SWF Transitions

I have been searching the forums for a couple of hours now and although I have found questions similar to mine, I can’t understand exactly what I’m doing wrong. Okay so, here goes it.

I went through the tutorial “Transitions between external swfs” and found it very helpful. I was able to successfully create a main swf containing a container movie clip that loads subsections and their intros/outros successfully. Getting a little adventurous, I have been desperately trying to repeat this process within a subsection with very little luck. I have been reading and tinkering for part of last night and most of today and I am still stuck.

The problem that I’ve been having is that when you click on a section other than the one currently being viewed, it plays the current movies’ outro and then loads the same movies’ intro instead of the new section that it’s supposed to be loading.

I am fairly new with action scripting and I could use anyone’s help that I can get. You can see what I’m talking about by going to www.hardicanstudios.com/soulmade.htm and clicking on a subsection under “about”. Below is the script that I am using for the “mission” button in the subsection. Thank you so much and I hope someone can help me.

on (rollOver) {
slider.yMove = mission._y;
}
on (release) {
if (_root.currMovie == undefined) {
_root.currMovie = “about_mission”;
this._parent.body.container2.loadMovie(“about_mission.swf”);
} else if (_root.currMovie != “about_mission”) {
if (this._parent.body.container2._currentframe >= this._parent.body.container2.midframe) {
_root.currMovie = “about_mission”;
this._parent.body.container2.play();
}
}
}

“body” is the instance name of the movieclip within the “about” section that contains the container known as “container2”. “about_mission” is the name of the swf that should load when “about_definition.swf” finishes it’s outro.
Thank you again
[FONT=Verdana][SIZE=2][COLOR=Black][/COLOR][/SIZE][/FONT]