Xml - images - preloader

Hi.
How can i add preloader to images from my array ? I have couple of panels on stage , everyone have place for images, everything is loading nice. I only need to add preloader in every image holder.
and my code:

 ActionScript Code:
 [FONT=Courier New][LEFT][COLOR=#808080]*//----------------------------------XML--------------------------------------------\\*[/COLOR]

[COLOR=#000000]var[/COLOR] xmlColorCabaret:[COLOR=#0000ff]XML[/COLOR] = [COLOR=#000000]new[/COLOR] [COLOR=#0000ff]XML[/COLOR]COLOR=#000000[/COLOR];
xmlColorCabaret.[COLOR=#0000ff]ignoreWhite[/COLOR] = [COLOR=#000000]true[/COLOR];
xmlColorCabaret.[COLOR=#0000ff]onLoad[/COLOR] = [COLOR=#000000]function[/COLOR]COLOR=#000000[/COLOR]:[COLOR=#0000ff]Void[/COLOR] [COLOR=#000000]{[/COLOR]
[COLOR=#0000ff]if[/COLOR] COLOR=#000000[/COLOR] [COLOR=#000000]{[/COLOR]
[COLOR=#0000ff]xmlNode[/COLOR] = [COLOR=#0000ff]this[/COLOR].[COLOR=#0000ff]firstChild[/COLOR];
panel = [COLOR=#000000][[/COLOR][COLOR=#000000]][/COLOR];
title = [COLOR=#000000][[/COLOR][COLOR=#000000]][/COLOR];
info = [COLOR=#000000][[/COLOR][COLOR=#000000]][/COLOR];
image = [COLOR=#000000][[/COLOR][COLOR=#000000]][/COLOR];
show_contentCOLOR=#000000[/COLOR];
[COLOR=#000000]}[/COLOR] [COLOR=#0000ff]else[/COLOR] [COLOR=#000000]{[/COLOR]
panels_mc.[COLOR=#000080]content_txt[/COLOR].[COLOR=#0000ff]text[/COLOR] = [COLOR=#ff0000]“error”[/COLOR];
[COLOR=#000000]}[/COLOR]
[COLOR=#000000]}[/COLOR];

[COLOR=#000000]function[/COLOR] show_contentCOLOR=#000000[/COLOR] [COLOR=#000000]{[/COLOR]

[COLOR=#000000]var[/COLOR] xPos = [COLOR=#000080]0[/COLOR];
[COLOR=#000000]var[/COLOR] yPos = [COLOR=#000080]0[/COLOR];
[COLOR=#000000]var[/COLOR] panAlpha = [COLOR=#000080]100[/COLOR];
total = [COLOR=#0000ff]xmlNode[/COLOR].[COLOR=#0000ff]childNodes[/COLOR].[COLOR=#0000ff]length[/COLOR];

[COLOR=#0000ff]for[/COLOR]COLOR=#000000[/COLOR][COLOR=#000000]{[/COLOR]

panel[COLOR=#000000][[/COLOR]i[COLOR=#000000]][/COLOR] = [COLOR=#0000ff]xmlNode[/COLOR].[COLOR=#0000ff]firstChild[/COLOR];
title[COLOR=#000000][[/COLOR]i[COLOR=#000000]][/COLOR] = [COLOR=#0000ff]xmlNode[/COLOR].[COLOR=#0000ff]childNodes[/COLOR][COLOR=#000000][[/COLOR]i[COLOR=#000000]][/COLOR].[COLOR=#0000ff]childNodes[/COLOR][COLOR=#000000][[/COLOR][COLOR=#000080]0[/COLOR][COLOR=#000000]][/COLOR].[COLOR=#0000ff]firstChild[/COLOR].[COLOR=#0000ff]nodeValue[/COLOR];
info[COLOR=#000000][[/COLOR]i[COLOR=#000000]][/COLOR] = [COLOR=#0000ff]xmlNode[/COLOR].[COLOR=#0000ff]childNodes[/COLOR][COLOR=#000000][[/COLOR]i[COLOR=#000000]][/COLOR].[COLOR=#0000ff]childNodes[/COLOR][COLOR=#000000][[/COLOR][COLOR=#000080]1[/COLOR][COLOR=#000000]][/COLOR].[COLOR=#0000ff]firstChild[/COLOR].[COLOR=#0000ff]nodeValue[/COLOR];
image[COLOR=#000000][[/COLOR]i[COLOR=#000000]][/COLOR] = [COLOR=#0000ff]xmlNode[/COLOR].[COLOR=#0000ff]childNodes[/COLOR][COLOR=#000000][[/COLOR]i[COLOR=#000000]][/COLOR].[COLOR=#0000ff]childNodes[/COLOR][COLOR=#000000][[/COLOR][COLOR=#000080]2[/COLOR][COLOR=#000000]][/COLOR].[COLOR=#0000ff]firstChild[/COLOR].[COLOR=#0000ff]nodeValue[/COLOR];

[COLOR=#000000]var[/COLOR] currMovie:[COLOR=#0000ff]MovieClip[/COLOR] = scroller.[COLOR=#000080]container[/COLOR].[COLOR=#0000ff]attachMovie[/COLOR][COLOR=#000000]([/COLOR][COLOR=#ff0000]“panels”[/COLOR], [COLOR=#ff0000]“xml”[/COLOR]+i, i, [COLOR=#000000]{[/COLOR][COLOR=#0000ff]_x[/COLOR]:xPos, [COLOR=#0000ff]_y[/COLOR]:yPos, [COLOR=#0000ff]_alpha[/COLOR]:panAlpha[COLOR=#000000]}[/COLOR][COLOR=#000000])[/COLOR];
myPanels.[COLOR=#0000ff]push[/COLOR]COLOR=#000000[/COLOR];

currMovie.[COLOR=#000080]title_txt[/COLOR].[COLOR=#0000ff]text[/COLOR] = title[COLOR=#000000][[/COLOR]i[COLOR=#000000]][/COLOR];
currMovie.[COLOR=#000080]content_txt[/COLOR].[COLOR=#0000ff]text[/COLOR] = info[COLOR=#000000][[/COLOR]i[COLOR=#000000]][/COLOR];
currMovie.[COLOR=#000080]image_img[/COLOR].[COLOR=#0000ff]loadMovie[/COLOR]COLOR=#000000[/COLOR];

[COLOR=#000000]}[/COLOR]
[COLOR=#000000]}[/COLOR]
[/LEFT]
[/FONT]

thanks and sorry for my english :slight_smile: