Timeline problems

hi all,

i’m trying to make a flash presentation. The navigation is simple, just left and right arrow keys jump to the next frame label on the main timeline. For some reason though when i click forward it all goes wrong. The movies don’t play through their timeline but return to the root timeline and jump around.

Here is the file if anybody wants to take a look.

There are pauses in each of the movies timelines (which are needed), could this be the problem?

stop();
var nInterval = setInterval(Play, 3000);
function Play() {
clearInterval(nInterval);
gotoAndPlay(_currentframe+1);
}

Thanks in advance for any help.