Preloader stops at 80%

The preloaders on my site all seem to stop at around 80% or so before the images load. I’m not sure what I’m doing wrong, but after an hour searching through this forum, I can’t seem to find any answers. I though that maybe the registration might have been off, but have doublechecked that. Starting to lose my mind. Any ideas?

The site is up at http://www.gorotron.com/jette/blaisejette5.html

Here’s the script I used:

MovieClip.prototype.fadeIn = function() {
this.onEnterFrame = function() {
if (this._alpha<100) {
this._alpha += 10;
} else {
delete this.onEnterFrame;
}
};
};
bar._visible = false;
border._visible = false;
var empty = this.createEmptyMovieClip(“container”, “100”);
empty._x = 362;
empty._y = 18;
my_mc = new MovieClipLoader();
preload = new Object();
my_mc.addListener(preload);
preload.onLoadStart = function(targetMC) {
trace(“started loading “+targetMC);
container._alpha = 0;
bar._visible = true;
border._visible = true;
};
preload.onLoadProgress = function(targetMC, lBytes, tBytes) {
bar._xscale = (lBytes/tBytes)*100;
};
preload.onLoadComplete = function(targetMC) {
container.fadeIn();
border._visible = false;
bar._visible = false;
trace(targetMC+” done!”);

}

my_mc.loadClip(“ill_trout.jpg”, “_root.container”);