How to loop script

I’m an actionscript beginner. I’m using the TweenLite class to make 3 images fade in and out. (It would be easier for me to just do this on the timeline but I’m trying to learn AS.) All my code and content sits on Frame 1. I want to know how to make my movie continuously loop.

Here is my code:

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



TweenLite.to(img3_mc, .5, {delay:1, _alpha:0});
TweenLite.to(img2_mc, .5, {delay:3, _alpha:0});

TweenLite.to(img3_mc, .5, {delay:5, _alpha:100, overwrite:false});