Transitions and buttons help

hey peeps. ive used the tutorial here on kirupa to do the transitions and it works perfectly.

i have the mc on the main timeline with this AS inside that Nav MC.


this.onRelease = function() {
		if (_root.currMovie == undefined) {
				_root.currMovie = "section2";
				_root.container.loadMovie("section2.swf");
		} else if (_root.currMovie != "section2") {
				if (_root.container._currentframe>=_root.container.midframe) {
						_root.currMovie = "section2";
						_root.container.play();
				}
		}
};  

However, i now need to have sub menu items inside this mc. So i guess a nested MC (sub items) in the main nav MC on the main timeline. Any ideas how to get this to work? i suspect some sort of path problem or something.

any help please! =)
thanks, Shelby.