Xml banner fade in out

While trying to make one xml driven banner I stuck how can I do the fade in / fade out for each images and made the images clickable for different URL. Can anybody help. Below are the code for the AS and the xml as well.

AS CODE FOR THE BANNER.


   
  delay = 5000;
  //-----------------------
  function loadXML(loaded) {
         if (loaded) {
                xmlNode = this.firstChild;
                image = [];
                description = [];
                
  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 nextImage() {
         if (p<(total-1)) {
                p++;
                if (loaded == filesize) {
                       picture._alpha = 0;
                       picture.loadMovie(image[p], 1);
                       desc_txt.htmlText = description[p];
                       slideshow();
                       }
         }
  }
   
  function firstImage() {
         if (loaded == filesize) {
                picture._alpha = 0;
                picture.loadMovie(image[0], 1);
                desc_txt.htmlText = description[0];
                
                // for link of the images.
                this.picture[0].onRelease(getURL(link[p], "_blank"));
                slideshow();
         }
  }
   
  function slideshow() {
         myInterval = setInterval(pause_slideshow, delay);
         function pause_slideshow() {
                clearInterval(myInterval);
                if (p == (total-1)) {
                       p = 0;
                       firstImage();
                } else {
                       nextImage();
                }
         }
  }
   
   
  [/code/
   
  XML CODE FOR THE BANNER.
   
  
<?xml version="1.0" encoding="utf-4" standalone="yes"?>
worthless.

Anyone please....................:sad:

What I mean to say that an image will fade out and the next image will fade in. Just like fade in fade out transitions. Please help me.

Worthless

If the code is wrong, please give me some hints how to do that.