How to prevent newly preloading

I have small problem.
I tried to apply ProgressBar component to my new site which is in development.
If this site loads http://kameny.bresco.cz You see 2 ProgressBars which display loading of 2 images.

Problem is if the user click whatever of menu above (castillo, colorado, etc.) and than will again display the start page (click on logo BRESCO), than is the preloading newly displayed even if the images was loaded before.
I use this code:


var my_pb:mx.controls.ProgressBar;
//Set progress bar mode
my_pb.mode = "manual";
//my_pb.label = "%1% ze %2% nahráno";
//minimum numerical value before progress bar increments
my_pb.minimum = 100;
//maximum value of progress bar before it stops
my_pb.maximum = 200;
var increment_num:Number = my_pb.minimum;
this.onEnterFrame = function() {
	if (increment_num<my_pb.maximum) {
		increment_num++;
		//update progress of number incrementing
		my_pb.setProgress(increment_num, my_pb.maximum);
		trace(increment_num);
	} else {
// go to the second frame to display image		
gotoAndStop(2);
		delete this.onEnterFrame;
	}
};

I cant fix it, can you help me?
Thanks