Trying to display 2 random images in a single frame

Im trying to display 2 random images from a directory on my mainpage. I have the files listed in my xml file… images.xml and using the following script pointing to my instance name picture_mc. all works well for 1 image…how can I get a second image and position it correctly? Do i have to clear the variables? is there an easy way to place the mulitple images into location? Script below…thank you for any help! Please keep explanations simple, I’m very very new at this:

this._x = 400; //Offset from top-left corner (0,0)
this._y = -100; //Offset from top-left corner (0,0)

xmlImages = new XML();
xmlImages.ignoreWhite = true;
xmlImages.onLoad = loadImages;
xmlImages.load(“images.xml”);

function loadImages(loaded) {
if (loaded) {
xmlFirstChild = this.firstChild;
imageFileName = [];
totalImages = xmlFirstChild.childNodes[0].childNodes.length;
for (i=0; i<totalImages; i++) {
imageFileName* = xmlFirstChild.childNodes[0].childNodes*.attributes.title;
}
randomImage();
}
}
function randomImage() {
if (loaded == filesize) {
var ran = Math.round(Math.random() * (totalImages - 1));
picture_mc.loadMovie(imageFileName[ran],1);
pause();
}
}