attachMovie in array

Is that possible to load some movie clips in an array and attach them in specific movie clip that have been defined. Basically I want them to load as a slide.

Here what I mean:

var tab_mc = [];
var slide_mc = this.createEmptyMovieClip(“slide_mc”, 1);
var nb_elt = 11;
var compteur = 1;

loader_ens_img(tab_mc, nb_elt);

for(i=1;i<=nb_elt;i++) {
tab_mc* = this.attachMovie(“slide”+i,“slide”+i+"_mc", 1, {_x: 0, _y: 0});
}

function loader_ens_img(tab_mc, nb_elt) {
if(compteur <= nb_elt-1) {
if(compteur == 0){
accorder_temps(tab_mc, nb_elt);
}
slide_mc._alpha = 0;
slide_mc.loadMovie(tab_mc[compteur],1);
time(tab_mc, nb_elt);
}
compteur++;
}

I’m trying that but it seem doesn’t work. Actually the attachMovie is loading the last MC in an array.