preLoader

Hey guys…

need some help here…
i’ve developed a flash and xml photo gallery with a preloader. but after the first image the preloader does not seem to work. this is my code of my preloader

this.onEnterFrame = function()
{
filesize = holder.getBytesTotal();
loaded = holder.getBytesLoaded();
preloader._visible = true;
if (loaded != filesize)
{
preloader.preload_bar._xscale = 100*loaded/filesize;
}
else
{
preloader._visible = false;
}
};

for the first photo the preloader is working fine. but after that it does not work at all. can someone please help me on this???
thanks