Help! my foot is stuck in the @#$%&

this is an image fader by Senocular. The transition is on a seperate MC.
I am trying to figure out how to add text to accompany each image.
I’ve done this when loading images from an XML file, but this is beyond me.

Any help is greatly appriciated!!

// start //

var baseurl = _url.substr(0,_url.lastIndexOf("/")+1);
var dir = baseurl + “fashion”;
var images = [“pic_1”,“pic_2”,“pic_3”, “pic_4”];

playFade = function(){
this.gotoAndStop(this._currentframe + this.speed);
}
loadFade = function(){
var lod = this.fader.contents.getBytesLoaded();
var tot = this.fader.contents.getBytesTotal();
if (lod && tot && lod == tot){
this.speed = -1;
this.onEnterFrame = playFade;
}
}
pressForNext = function(){
this.speed = 1;
delete this.onPress;
}

fading_symbol.onFadeOut = function(){
this.speed = 0;
this.fader.contents.loadMovie(dir + “/” + images[0] + “.jpg”);
images.push(images.shift());
this.onEnterFrame = loadFade;
}
fading_symbol.onFadeIn = function(){
this.speed = 0;
this.onPress = pressForNext;
}

fading_symbol.gotoAndStop(fading_symbol._totalframes); // straight to onFadeOut