Loading Images in XML Photo Gallery

I am having problems loading my own images in an xml photo gallery. I’m using the following code for my mc:

people = new XML();
people.ignoreWhite = true;
people.onLoad = function(success) {
//portfolioTag = this.firstChild;
numimages = this.firstChild.childNodes.length;
spacing = 70;
for (i=0; i<numimages; i++) {
picHolder = this.firstChild.childNodes*;
thumbHolder = thumbnails.createEmptyMovieClip(“thumbnail”+i, i);
thumbHolder._x = i*spacing;
thumbLoader = thumbholder.createEmptyMovieClip(“thumbnail_image”, 0);
thumbLoader.loadMovie(picHolder.attributes.thmb);
thumbHolder.title = picHolder.attributes.title;
thumbHolder.main = picHolder.attributes.main;
thumbHolder.onRelease = function() {
loader.loadMovie(this.main);
title_txt.text = this.title;
};
}
};
people.load(“people.xml”);


and i’m using the following xml code:


<people>
<image title=“Men at Folsom St. Fair, San Francisco, 2005”
main=“people/images/folsom.jpg”
thmb=“people/thumbs/tfolsom.jpg”/>

<image title=“Men at Folsom St. Fair, San Francisco, 2005”
main=“people/images/folsom.jpg”
thmb=“people/thumbs/tfolsom.jpg”/>

<image title=“Found this Bug”
main=“people/images/bug.jpg”
thmb=“people/thumbs/bug.jpg”/>

<image title=“Barbeque Lunch”
main=“people/images/bbq.jpg”
thmb=“people/thumbs/bbq.jpg”/>

<image title=“Evening Boat Ride”
main=“people/images/boat.jpg”
thmb=“people/thumbs/boat.jpg”/>
</people>


For some reason, I’m not able to load my own images… (folsom.jpg, tfolsom.jpg)…not even locally. The paths are all correct - as the other photos listed above load fine…so I dont think it’s an issue with the XML, it’s something with my image files. I saved it as RGB 72dpi for the web… it’s 600x400 (same size as the MC), but my files won’t load (not even in the preview). The source file photos load tho (boat, bbq), and I dont know what the problem is. Am I missing a piece of code? Also, the titles aren’t appearing either.

Any suggestions??