[Actionscript 2.0, Flash 8] Button Help Needed

Hello,
I set up a photo gallery that uses transition effects. The JPEG will load with the transition effect but when I try to use the thumbnails nothing happens. I think there is something wrong with the thumbnail code. Here is the code

import mx.transitions.*;
import mx.transitions.easing;

this.createEmptyMovieClip(“image_mc”, this.getNextHighestDepth());
var mclListener: Object = new Object();
mclListener.onLoadStart = function(target_mc:MovieClip) {

};
mclListener.onLoadComplete = function(target_mc:MovieClip) {

};
mclListener.onLoadInit = function(target_mc:MovieClip) {
TransitionManager.start(target_mc,
{type:Blinds, direction:Transition.IN,
duration:2, easing:None.easeNone,
numStrips:10, dimension:0});
};
var image_mcl:MovieClipLoader = new MovieClipLoader();
image_mcl.addListener(mclListener);
image_mcl.loadClip(“image1.jpg”, image_mc);
//the code works up to this point loading the jpeg with the effect
button1_mc.onRelease = function(){
image_mcl.loadClip(“image1.jpg”, image_mc);

}

Someone please tell me what I’m doing wrong.
Thanks, Bosco99