Adding Image to Container Help. Multi-Dimensional Arrays tutorial

[LEFT]I am trying to add a image to the container but am having problems. The image variable is loading fine but not attinching itself to the empty MC I have on the container.

memberInfo = [["Cnet", "Online Search Engine", "http://www.cnet.com", "images/bp1_s.jpg"], ["Yahoo", "Online Search Engine", "http://www.yahoo.com", "images/bw1_s.jpg"], ["Google", "Record Label Information Site", "http://www.Google.com", "images/ms1_s.jpg"]];
var xPos = 10;
var yPos = 10;
for (i=0; i<memberInfo.length; i++) {
    attachMovie("container", "new"+i, i, {_x:xPos, _y:yPos});
    yPos += this["new"+i]._height+5;
    this["new"+i].name.text = memberInfo*[0];
    this["new"+i].interest.text = memberInfo*[1];
    this["new"+i].link = memberInfo*[2];
    this["new"+i].image = memberInfo*[3];
    
}

And this is on the instance of the empty movie clip oin the container

onClipEvent (enterFrame) {
    load(this.image);
}

[/LEFT]