RolodexCard[] cards = new RolodexCard[3];
for (int index = 0; index < 3; index++) {
ClippedImagePrototype expanded = new ClippedImagePrototype(defaultImage.getURL(), 0, 0, 300, 200);
ClippedImagePrototype collapseLeft = new ClippedImagePrototype(defaultImage.getURL(), 0, 0, 100, 100);
ClippedImagePrototype collapseRight = new ClippedImagePrototype(defaultImage.getURL(), 0, 0, 100, 100);
cards[index] = new RolodexCard(expanded, collapseLeft, collapseRight, 300, 100, 0);
}
return cards;
}