Linking troubles

Currently I’m trying to get my images to link to external urls, how ever I’m currently doing something wrong where I get an undefined error when I click on the links. The code I’m using is as fallows

function loadXML(loaded) {

if (loaded) {

xmlNode = this.firstChild;
thumbnails = ;

total = xmlNode.childNodes.length;
for (i=0; i<total; i++) {

thumbnails* = xmlNode.childNodes*.childNodes[2].firstChild.nodeValue;
thumbnails_fn(i);

}
firstImage();

} else {

content = “file not loaded!”;

}

}
xmlData = new XML();
xmlData.ignoreWhite = true;
xmlData.onLoad = loadXML;
xmlData.load(“images.xml”);
/////////////////////////////////////

function thumbNailScroller() {

// thumbnail code!
this.createEmptyMovieClip(“tscroller”, 1000);

scroll_speed = 5;

tscroller.onEnterFrame = function() {

if ((_root._ymouse>=thumbnail_mc._y) && (_root._ymouse<=thumbnail_mc._y+thumbnail_mc._height)) {

if ((_root._xmouse>=(hit_right._x-40)) && (thumbnail_mc.hitTest(hit_right))) {

thumbnail_mc._x -= scroll_speed;

} else if ((_root._xmouse<=40) && (thumbnail_mc.hitTest(hit_left))) {

thumbnail_mc._x += scroll_speed;

}

} else {

delete tscroller.onEnterFrame;

}

};

}

function thumbnails_fn(k) {

thumbnail_mc.createEmptyMovieClip(“t”+k, thumbnail_mc.getNextHighestDepth());
tlistener = new Object();
tlistener.onLoadInit = function(target_mc) {

target_mc._x = hit_left._x+(eval(“thumbnail_mc.t”+k)._width+5)*k;
target_mc.pictureValue = k;
target_mc.onRelease = function() {

getURL(destinationURL, “_self”);

};
target_mc.onRollOver = function() {

this._alpha = 50;
thumbNailScroller();

};
target_mc.onRollOut = function() {

this._alpha = 100;

};

};
image_mcl = new MovieClipLoader();
image_mcl.addListener(tlistener);
image_mcl.loadClip(thumbnails[k], “thumbnail_mc.t”+k);

}

And my XML is

<images>
<pic>
<thumbnail>thumbnail/thumbnail1.jpg.</thumbnail>
<destinationURL address=“http://uk.news.yahoo.com”></destinationURL>
</pic>
<pic>
<thumbnail>thumbnail/thumbnail2.jpg</thumbnail>
<destinationURL address=“http://uk.news.yahoo.com”></destinationURL>
</pic>
<pic>
<thumbnail>thumbnail/thumbnail3.jpg</thumbnail>
<destinationURL address=“http://uk.news.yahoo.com”></destinationURL>
</pic>
<pic>
<thumbnail>thumbnail/thumbnail4.jpg</thumbnail>
<destinationURL address=“http://uk.news.yahoo.com”></destinationURL>
</pic>
<pic>
<thumbnail>thumbnail/thumbnail5.jpg</thumbnail>
<destinationURL address=“http://uk.news.yahoo.com”></destinationURL>
</pic>
</images>

I’m betting I’ve forgotten to do something stupid…