Caching loaded images?

Is there any way to keep a loaded image cached somewhere in the users computer/cache/cookies so that when they reload the flash movie, the images dont load again? Instead it just appears as if it’s been loaded before?

Right now, Im using:

var mcLoader1:MovieClipLoader = new MovieClipLoader();
mcLoader1.addListener(this);.
mcLoader1.loadClip("http://freish.freehostia.com/pics/" + n + ".jpg", _root["container" + n]);
onLoadInit = function (mc1:MovieClip) {
	mc1._width = 100;
	mc1._height = 100;
};

The third line in this code is in a for loop. Everytime I reload the swf the pictures come in one by one (in random orders).

Thanks for any help.