So I have this preloader on my Flash movie and the problem is that when you go to the URL it does not show - the white page sits there for up to 15 seconds with no preloader. in the progress bar it says "transfering data from welcome runners" Please see www.welcomerunners.com

My preloader code is:

onClipEvent (enterFrame) {
loaded = _parent.getBytesLoaded();
total = _parent.getBytesTotal();
progress = Math.round((loaded/total)*100);
loaderInfo = Math.round(loaded/1000) + " k loaded / " + Math.round(total/1000) + " k total";
progressBar._width = progress;
if(loaded == total) {
_parent.gotoAndPlay(2);
}
}

Anyone???