Links on Jpgs thru XML?

I’m making profiles of people with info through XML. Is it possible to add URL’s on xml loaded images? Or how about to add url’s on both text and image? Need help on this please! Thanks!

AS:

stop();
function loadXML(loaded) {
	if (loaded) {
		xmlNode = this.firstChild;
		image = [];
		description = [];
		caption = [];
		dayjob = [];
		birthday = [];
		know = [];
		total = xmlNode.childNodes.length;
		for (i=0; i<total; i++) {
			image* = xmlNode.childNodes*.childNodes[0].firstChild.nodeValue;
			description* = xmlNode.childNodes*.childNodes[1].firstChild.nodeValue;
			caption* = xmlNode.childNodes*.childNodes[2].firstChild.nodeValue;
			dayjob* = xmlNode.childNodes*.childNodes[3].firstChild.nodeValue;
			birthday* = xmlNode.childNodes*.childNodes[4].firstChild.nodeValue;
			know* = xmlNode.childNodes*.childNodes[5].firstChild.nodeValue;
		}
		firstImage();
	} else {
		content = "file not loaded!";
	}
}
xmlData = new XML();
xmlData.ignoreWhite = true;
xmlData.onLoad = loadXML;
xmlData.load("images.xml");
/////////////////////////////////////

/////////////////////////////////////
p = 0;
this.onEnterFrame = function() {
	filesize = picture.getBytesTotal();
	loaded = picture.getBytesLoaded();
	preloader._visible = true;
	if (loaded != filesize) {
		preloader.preload_bar._xscale = 100*loaded/filesize;
	} else {
		preloader._visible = false;
		if (picture._alpha<100) {
			picture._alpha += 10;
		}
	}
};

function firstImage() {
	if (loaded == filesize) {
		picture._alpha = 0;
		picture.loadMovie(image[0], 1);
		desc_txt.text = description[0];
		hometown_txt.text = caption[0];
		what_txt.text = dayjob[0];
		birthday_txt.text = birthday[0];
		know_txt.text = know[0];
		picture_num();
	}
}

XML:

<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<images>
    <pic>
        <image>nicky76.jpg</image>
        <caption>Nicky Hilton</caption>
	<hometown>New York</hometown>
	<what>Hotel Heiress and Handbag Designer</what>
        <birthday>10/5/83</birthday>
        <know>All In The Family: Her great uncle Conrad "Nicky" Hilton, Jr was once married to Elizabeth Taylor, and was also Zsa-Zsa Gabor's stepson. Talk about your wild family reunions!</know>
    </pic>
</images>