Please help me on this!

Hi every senior and expert,

Actually i just want to use the function of creating menu from this tutorial ([color=#800080]http://www.kirupa.com/web/xml/examples/squirrelfinder.htm[/color])
and the function to showing portfolio from this tutorial ([color=#800080]http://www.kirupa.com/web/xml/examples/portfolio.htm[/color]).

But the problem is i try many time it still cant work load the image!

So can you all help me on this?

Below are the code i try:

var thumb_spacing = 25;
var item_count = 0;

var description_lv = new LoadVars();
description_lv.onData = function(raw_text){
description_txt.text = raw_text;
}

function GeneratePortfolio(portfolio_xml){
var portfolioPictures = portfolio_xml.firstChild.firstChild.childNodes;
for (var i = 0; i < portfolioPictures.length; i++){
var currentPicture = portfolioPictures*;
var portname = portfolioPictures*.childNodes[0];
var description = portfolioPictures*.childNodes[1];

var currentThumb_mc = menu_mc.attachMovie ("menu_item "+item_count, item_count);
currentThumb_mc._y = item_count * thumb_spacing;
item_count++;

currentThumb_mc.species_txt.text = portname.firstChild.nodeValue;
currentThumb_mc.main_btn.location_text = description.firstChild.nodeValue;

currentThumb_mc.title = currentPicture.attributes.title;
currentThumb_mc.image = currentPicture.attributes.image;
currentThumb_mc.description = currentPicture.attributes.description;

currentThumb_mc.onRelease = function(){
image_mc.loadMovie(this.image);
description_lv.load(this.description);
}
}
}

var portfolio_xml = new XML();
portfolio_xml.ignoreWhite = true;
portfolio_xml.onLoad = function(success){
if (success) GeneratePortfolio(this);
else trace(“Error loading XML file”);
}
portfolio_xml.load(“portfolio.xml”);

This is the XML code:

<?xml version=“1.0” ?>
<portfolio>
<menuitems>
<picture type = “ads”>
<portname>001</portname>
<description>“portfolio_text/001.txt”</description>
image = “portfolio_images/mm001/mm001.jpg” />

<picture type = “ads”>
<portname>002</portname>
<description>“portfolio_text/002.txt”</description>
image = “portfolio_images/mm002/mm002.jpg” />

<picture type = “ads”>
<portname>003</portname>
<description>“portfolio_text/003.txt”</description>
image = “portfolio_images/mm003/mm003.jpg” />
</menuitems>
</portfolio>

[color=red]PLEASE HELP ME ON THIS!!

THANKS A LOT!![/color]