Fade in/out pics

I am trying to fade in/out pics that I am reading in. How do I fade them in and out. What do I add to my code?

function firstimage() {
if (i<=19) {
picture = i+".jpg";
i++;
}
else {
i = 1;
}
loadMovie(picture,_root.viewer);

thanks