Tweenclass animation..please help

I have a basic alpha tween applied to a clip. The clip fades in and then fades out. But I would like duplicates of this clip on the stage all to fade in and fade out at various times, so I placed these clips along the main timeline to be executed when the playhead reaches them. The problem is I cant seem to get them to work? The first fades in and out but thats it…I cant figure how to get the others to work?

I thought I could put the code around an onEnterFrame function but it doesnt seem to work? when called, not sure if im on the right path or not

I am really new to actionscript, so any help would be really appreciated…sorry if this is a really simple question…

code:

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

var mcTween:Tween = new Tween(jester_mc, “_alpha”, Regular.easeInOut, 0, 100, 3, true);
mcTween.onMotionFinished = function(){
new Tween(jester_mc, “_alpha”, Regular.easeInOut, 100, 0, 3, true);
}

thanks…

lister