Partial preload

Hello, everyone! I’ve been here for some time now, learning in the background thanks to many great tutorials and questions that people asked before. But, I have a problem now.

I am making a website for my friend’s internet cafe, and I wanted to ask is it possible just to partially load the site, because I have the site separated by labels (home, gallery, download etc.), and I don’t want the whole site to load at once, but just to load the part of the website included in the “home” label. And when I click on the Gallery link, the timeline goes to the “gallery” label and loads just the part included in the “gallery” label.

I have tried putting these sections in separate swf-s but the problem is I have some dynamic content included in those swf-s and it won’t show when loaded into the main site by the loader component.

The code I am using for the preloader is:

(Frame 1)
bytes_loaded = Math.round(_root.getBytesLoaded());
bytes_total = Math.round(_root.getBytesTotal());
getPercent = bytes_loaded/bytes_total;
_root.loadBar._width = getPercent100;
_root.loadText = Math.round(getPercent
100)+"%";
if (bytes_loaded == bytes_total) {
_root.gotoAndStop(3);
}

(Frame 2)
gotoAndPlay(1);

Is there any way I can alter the code so it just loads the “home” label and so on (basically to load the site page by page)? Or is there any other solution?

THANK YOU in advance!!!