Well, you can usually use:
event_id[event_id.length] = {"0":"e5"};
or (a little slower)
event_id.push({"0":"e5"});
although if you want to insert an element in the middle of the array, and not always at the end, then we will have to come up with something more creative.
Hope this helps,
ISE
source share