For Loop and onRelease

I’ve tried a couple things so far to figure this out without any success. Please let me know if you see any quick fixes for this.

Thanks,
Saveth


var booths:Array = new Array();

for(var i=1; i<15; i++){
    booths* = "booth_" + i + "_mc";
}

for(var i=1; i<15; i++){
    container_mc.booths*.id = i;
    container_mc.booths*.onRelease = function () {
        trace(booths[this.id]);
    }
}