Help in flash website actionscript

Hey… Made a website with this tutorial: kirupa.com - Transitions Between External SWFs
But I tweaked the actionscript because my structure is different…

Anyway, My menu buttons are in a movie clip . And in the buttons, I put this code…

on (release) {
_parent.currMovie = “profile”;
_parent.play();
}

and on the last frame of the main timeline i put this code:

container.loadMovie(currMovie+“.swf”);

The problem is, sometimes it loads the profile page, and sometimes it doesnt!

Please help me…