Interface problems online

hi…would appreciate it if anyone can help…
I have a main moive (where menu is) which loads 5 other external swfs. I’m currently testing my site online and the movies load just fine. The only problem is when I navigate the buttons quickly before the swfs finish loading…it doesn’t load/there is a lag…Unlike the 2advanced.com site, no matter how fast u navigate the links, the movies load immediately…my code on one of the buttons look like this:

on (release) {
targetx = 55;
tellTarget (“gradient”) {
gotoAndPlay(2);
}
unloadMovieNum(2);
unloadMovieNum(3);
unloadMovieNum(4);
unloadMovieNum(5);
swfToLoad = “main.swf”;
loadSWF = setInterval(getSWF, 100, swfToLoad);
function getSWF(swfToLoad) {
loadMovieNum(swfToLoad, 1);
clearInterval(loadSWF);
}
}
:slight_smile: