/* Actors */
var domains; // a collection of domains
var arsMemorativa; // the art of memory
var collective; // a collection of memories
var i; // an index used to locate a memory
var FamilyName = ' of Nine';
/* Action */
domains = {};
domains.memory = new Domain('Memory');
arsMemorativa = new TheArtOf(domains.memory);
collective = [
new Memory(), new Memory(), new Memory(),
new Memory(), new Memory(), new Memory(),
new Memory(), new Memory(), new Memory()
];
for (i=0; i<9; i++)
collective[i].remember((i+1) + FamilyName);
// In a parallel universe not far, far away:
// not yet, though venissoon after,
// had a kidscad buttended a bland old isaac:
// not yet, though all's fair in fantasy....
// dude looks like a lady
collective.sevenOfNine = collective[6];
collective.SevenOfNine = new Memory();
collective.SevenOfNine.remember('Seven of Nine');
collective.doppelgAnger = collective.SevenOfNine;