URLs in an array: Please help

Hi,
I have modified one of the tutorials on Kirupa to load a list of URLs in an array attached to an animated button. All works grand now but for one thing: All the buttons take me to the same site (Senocular’s), which is last in the array:

 
memberInfo = [["Kirupa", "[http://www.kirupa.com/forum/member.php?u=1"],["B.Rich", "[url="http://www.kirupa.com/forum/member.php?u=4513"]http://www.kirupa.com/forum/member.php?u=4513"], ["Senocular", "[url="http://www.kirupa.com/forum/member.php?u=2867"]http://www.kirupa.com/forum/member.php?u=2867](http://www.kirupa.com/forum/member.php?u=1)"]]; 
var xPos = 150;
var yPos = 50;
var listMovie = _root.createEmptyMovieClip("listMC", _root.getNextHighestDepth());
CreateList(listMovie);
function CreateList(listMovie){
for (i=0; i<memberInfo.length; i++) {
listMovie.attachMovie("container", "new"+i, i, {_x:xPos, _y:yPos});
yPos += listMovie["new"+i]._height+5;
listMovie["new"+i].name.text = memberInfo*[0];
link = memberInfo*[1];
listMovie["new"+i].onPress = function(){
getURL(link,"_blank");
}
listMovie["new"+i].onRollOver = function(){
		this.gotoAndPlay(2);
}
listMovie["new"+i].onRollOut = function(){
this.gotoAndPlay(8);
}
}
}

I will be grateful for any pointers.

Geminian1