if you want it all to be in one self-contained movie then just put the different content pages into separate keyframes with STOP actions on each frame. then on any of your buttons you just put
on(release){
gotoAndPlay(3);
}
you probably already understand this but all you are basically doing is creating a linear animation, but are controlling which parts of the animation a user is seeing at any one time, by jumping backwards and forwards.
__________________