Dynamic Looping images

I want to dynamically load some images, and have them scroll across the screen in a loop. The solution I’ve come up with is to create a MC, load and display the images in that, and then tween the MC across the stage. Here’s how I’m loading the images:

for(n = 0; n < 14; n++){
	_this.createEmptyMovieClip("image"+n, 200+n);
	_this[ "image"+n] ._x = n*700;
	_this[ "image"+n] ._y = 0;
	loadMovie("home/0"+(n+1)+".jpg", ["image"+n]);
}

I’m not sure if it’s not loading the images at all or just not displaying them. I’m certain I’ve got my syntax wrong somehow, but I’m not sure where. Any help would be appreciated.

Thanks,
-b