-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathalumni.php
1370 lines (1035 loc) · 41.4 KB
/
alumni.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1"/>
<meta name="description" content="description"/>
<meta name="keywords" content="keywords"/>
<meta name="author" content="author"/>
<link rel="stylesheet" type="text/css" href="/template/default.css" media="screen"/>
<title>The Class Notes - Cornell's Original Co-Ed A Cappella Group</title>
</head>
<body>
<div class="container">
<?php include("./template/header.php") ?>
<div class="top">
<span>Cornell's Original Co-Ed A Cappella Group</span>
</div>
<div class="main">
<div class="item">
<div class="CNbullet">
</div>
<div class="content">
<h1>Before us came...</h1>
<div class="body">
<p>
To our beloved alumni, help us stay in touch by updating your photo and
contact info with our
<a href="mailto:[email protected]">
<b>GM</b></a>. Also, be sure to <a href="mailto:[email protected]?subject=Alumni%20Listserve">
<b>join the alumni listserve</b></a> to receive news and updates from
all generations of Class Notes.
</p>
</div>
</div>
</div>
<div class="item">
<div class="CNbullet">
</div>
<div class="content">
<h1>Class of 2012</h1>
<div class="body">
<table class="alumni" border="0" cellpadding="0" cellspacing="0" summary=""><tr>
<td>
<table class="alumniEmail" border="0" cellpadding="0" cellspacing="0" summary="">
<tr><td><a href="">Ha Lim Lee</a></td></tr>
<tr><td><a href="">Alex Hahn</a></td></tr>
<tr><td><a href="">Lacey Steinel</a></td></tr>
<tr><td><a href="">Alex Martino</a></td></tr>
<tr><td><a href="">Maya Gunaseharan</a></td></tr>
<tr><td><a href="">Lindsay McDonald</a></td></tr>
<tr><td><a href="">Thomas Shepherd</a></td></tr>
<tr><td><a href="">Liankun "Luke" Zhu</a></td></tr>
<tr><td><a href="">Mitchell Davis</a></td></tr>
<tr><td></td></td>
</table>
<td>
<table class="alumniPics" border="0" cellpadding="0" cellspacing="0" summary="">
<tr>
<td><img src="alumni/2012/Halim.png" width=56 height=65></td>
<td><img src="alumni/2012/Hahn.png" width=56 height=65></td>
<td><img src="alumni/2012/Lacey.png" width=56 height=65></td>
<td><img src="alumni/2012/Martino.JPG" width=56 height=65></td>
<td><img src="alumni/2012/Maya.JPG" width=56 height=65></td>
</tr>
<tr>
<td><img src="alumni/2012/Lindsay.JPG" width=56 height=65></td>
<td><img src="alumni/2012/Thomas.JPG" width=56 height=65></td>
<td><img src="alumni/2012/Luke.png" width=56 height=65></td>
<td><img src="alumni/2012/Mitchell.JPG" width=56 height=65></td>
</tr>
</table>
</td>
</tr>
</table>
</div>
</div>
</div>
<div class="item">
<div class="CNbullet">
</div>
<div class="content">
<h1>Class of 2011</h1>
<div class="body">
<table class="alumni" border="0" cellpadding="0" cellspacing="0" summary=""><tr>
<td>
<table class="alumniEmail" border="0" cellpadding="0" cellspacing="0" summary="">
<tr><td><a href="">Grace Epstein</a></td></tr>
<tr><td><a href="mailto:[email protected]">Cassie Greene</a></td></tr>
<tr><td><a href="mailto:[email protected]">Gwendolyn Waichman</a></td></tr>
<tr><td><a href="mailto:[email protected]">Jacob Chamoun</a></td></tr>
<tr><td></td></td>
</table>
<td>
<table class="alumniPics" border="0" cellpadding="0" cellspacing="0" summary="">
<tr>
<td><img src="alumni/2011/Grace.png" width=56 height=65></td>
<td><img src="alumni/2011/Cassie.png" width=56 height=65></td>
<td><img src="alumni/2011/Gwen.png" width=56 height=65></td>
<td><img src="alumni/2011/Jacob.png" width=56 height=65></td>
</tr>
</table>
</td>
</tr>
</table>
</div>
</div>
</div>
<div class="item">
<div class="CNbullet">
</div>
<div class="content">
<h1>Class of 2010</h1>
<div class="body">
<table class="alumni" border="0" cellpadding="0" cellspacing="0" summary=""><tr>
<td>
<table class="alumniEmail" border="0" cellpadding="0" cellspacing="0" summary="">
<tr><td><a href="mailto:[email protected]">Olga Desyatnik</a></td></tr>
<tr><td><a href="mailto:[email protected]">Rachel Kleinman</a></td></tr>
<tr><td><a href="mailto:[email protected]">Steve Linderman</a></td></tr>
<tr><td></td></td>
</table>
<td>
<table class="alumniPics" border="0" cellpadding="0" cellspacing="0" summary="">
<tr>
<td><img src="alumni/2010/olga.gif" width=56 height=65></td>
<td><img src="alumni/2010/rachel.gif" width=56 height=65></td>
<td><img src="alumni/2010/steve.gif" width=56 height=65></td>
</tr>
</table>
</td>
</tr>
</table>
</div>
</div>
</div>
<div class="item">
<div class="CNbullet">
</div>
<div class="content">
<h1>Class of 2009</h1>
<div class="body">
<table class="alumni" border="0" cellpadding="0" cellspacing="0" summary=""><tr>
<td>
<table class="alumniEmail" border="0" cellpadding="0" cellspacing="0" summary="">
<tr><td><a href="mailto:[email protected]">Eugene Chang</a></td></tr>
<tr><td><a href="mailto:[email protected]">Scott Hayes</a></td></tr>
<tr><td><a href="mailto:[email protected]">Natalie Pierro</a></td></tr>
<tr><td><a href="mailto:[email protected]">Alex Woogmaster</a></td></tr>
<tr><td></td></td>
</table>
<td>
<table class="alumniPics" border="0" cellpadding="0" cellspacing="0" summary="">
<tr>
<td><img src="alumni/2009/Eugene.gif" width=56 height=65></td>
<td><img src="alumni/2009/Scott.gif" width=56 height=65></td>
<td><img src="alumni/2009/Natalie.gif" width=56 height=65></td>
<td><img src="alumni/2009/woog.gif" width=56 height=65></td>
</tr>
</table>
</td>
</tr>
</table>
</div>
</div>
</div>
<div class="item">
<div class="CNbullet">
</div>
<div class="content">
<h1>Class of 2008</h1>
<div class="body">
<table class="alumni" border="0" cellpadding="0" cellspacing="0" summary=""><tr>
<td>
<table class="alumniEmail" border="0" cellpadding="0" cellspacing="0" summary="">
<tr><td><a href="mailto:[email protected]">Anderson Clark</a></td></tr>
<tr><td><a href="mailto:[email protected]">Jill Lange</a></td></tr>
<tr><td><a href="mailto:[email protected]">Andrew Majak</a></td></tr>
<tr><td><a href="mailto:[email protected]">Natasha Major</a></td></tr>
<tr><td><br /></td></td>
<tr><td><a href="mailto:[email protected]">Amanda Soled</a></td></tr>
<tr><td><a href="mailto:[email protected]">Phil Torres</a></td></tr>
<tr><td></td></td>
</table>
<td>
<table class="alumniPics" border="0" cellpadding="0" cellspacing="0" summary="">
<tr>
<td><img src="alumni/2008/anderson.gif" width=56 height=65></td>
<td><img src="alumni/empty.gif" width=56 height=65></td>
<td><img src="alumni/empty.gif" width=56 height=65></td>
<td><img src="alumni/empty.gif" width=56 height=65></td>
</tr>
<tr><td><br /></td></tr>
<tr>
<td><img src="alumni/2008/amanda.gif" width=56 height=65></td>
<td><img src="alumni/2008/phil.gif" width=56 height=65></td>
</tr>
</table>
</td>
</tr>
</table>
</div>
</div>
</div>
<div class="item">
<div class="CNbullet">
</div>
<div class="content">
<h1>Class of 2007</h1>
<div class="body">
<table class="alumni" border="0" cellpadding="0" cellspacing="0" summary=""><tr>
<td>
<table class="alumniEmail" border="0" cellpadding="0" cellspacing="0" summary="">
<tr><td><a href="mailto:[email protected]">Nellie Thompson</a></td></tr>
</table>
<td>
<table class="alumniPics" border="0" cellpadding="0" cellspacing="0" summary="">
<tr>
<td><img src="alumni/2007/nellie.gif" width=56 height=65 border=0></td>
</tr>
</table>
</td>
</tr></table>
</div>
</div>
</div>
<div class="item">
<div class="CNbullet">
</div>
<div class="content">
<h1>Class of 2006</h1>
<div class="body">
<table class="alumni" border="0" cellpadding="0" cellspacing="0" summary=""><tr>
<td>
<table class="alumniEmail" border="0" cellpadding="0" cellspacing="0" summary="">
<tr><td><a href="mailto:[email protected]">Melissa Bergman</a></td></tr>
<tr><td><a href="mailto:[email protected]">Matt Bovenzi</a></td></tr>
<tr><td><a href="mailto:[email protected]">Will Evans </a></td></tr>
<tr><td><a href="mailto:[email protected]">Megan Peddigree</a></td></tr>
<tr><td><br /></td></td>
<tr><td><a href="mailto:[email protected]">Julia Schlenker</a></td></td>
<tr><td><a href="mailto:[email protected]">Michael Tang </a></td></td>
<tr><td><a href="mailto:[email protected]">Noah Van Gilder</a></td></td>
<tr><td></td></td>
</table>
<td>
<table class="alumniPics" border="0" cellpadding="0" cellspacing="0" summary="">
<tr>
<td><img src="alumni/2006/Melissa-Bergman.gif" width=56 height=65></td>
<td><img src="alumni/2006/Matt-Bovenzi.gif" width=56 height=65></td>
<td><img src="alumni/2006/Will-Evans.gif" width=56 height=65></td>
<td><img src="alumni/2006/Megan-Peddigree.gif" width=56 height=65></td>
</tr>
<tr><td><br /></td></tr>
<tr>
<td><img src="alumni/2006/Julia-Schlenker.gif" width=56 height=65></td>
<td><img src="alumni/2006/Michael-Tang.gif" width=56 height=65></td>
<td><img src="alumni/2006/Noah-Van-Gilder.gif" width=56 height=65></td>
</tr>
</table>
</td>
</tr></table>
</div>
</div>
</div>
<div class="item">
<div class="CNbullet">
</div>
<div class="content">
<h1>Class of 2005</h1>
<div class="body">
<table class="alumni" border="0" cellpadding="0" cellspacing="0" summary=""><tr>
<td>
<table class="alumniEmail" border="0" cellpadding="0" cellspacing="0" summary="">
<tr><td><a href="mailto:[email protected]">Ellen Huang</a></td></tr>
<tr><td><a href="mailto:[email protected]">Gei Tai Lin</a></td></tr>
<tr><td><a href="mailto:[email protected]">Asha Marathe</a></td></tr>
</table>
<td>
<table class="alumniPics" border="0" cellpadding="0" cellspacing="0" summary="">
<tr>
<td width="56"><img src="alumni/2005/ellen.gif" width=56 height=65></td>
<td width="56"><img src="alumni/2005/Gei-Tai-Lin.gif" width=56 height=65></td>
<td width="56"><img src="alumni/2005/asha.gif" width=56 height=65></td>
</tr>
</table>
</td>
</tr></table>
</div>
</div>
</div>
<div class="item">
<div class="CNbullet">
</div>
<div class="content">
<h1>Class of 2004</h1>
<div class="body">
<table class="alumni" border="0" cellpadding="0" cellspacing="0" summary=""><tr>
<td>
<table class="alumniEmail" border="0" cellpadding="0" cellspacing="0" summary="">
<tr><td><a href="mailto:[email protected]">Alee Cavanagh</a></td></tr>
<tr><td><a href="mailto:[email protected]">Lindsey Geddes</a></td></tr>
<tr><td><a href="mailto:[email protected]">Reg Gonzales</a></td></tr>
<tr><td><a href="mailto:[email protected]">Sean Lynch</a></td></tr>
<tr><td><br /></td></td>
<tr><td><a href="mailto:[email protected]">Brandon Robinson</a></td></td>
<tr><td></td></td>
<tr><td></td></td>
<tr><td></td></td>
</table>
<td>
<table class="alumniPics" border="0" cellpadding="0" cellspacing="0" summary="">
<tr>
<td><img src="alumni/2004/alee.gif" width=56 height=65 border=0></td>
<td><img src="alumni/2004/lindsey.gif" width=56 height=65 border=0></td>
<td><img src="alumni/2004/reg.gif" width=56 height=65 border=0></td>
<td><td><img src="alumni/2004/sean.gif" width=56 height=65 border=0></td></td>
</tr>
<tr><td><br /></td></tr>
<tr>
<td><img src="alumni/2004/brandon.gif" width=56 height=65 border=0></td>
<td></td>
<td></td>
<td></td>
</tr>
</table>
</td>
</tr></table>
</div>
</div>
</div>
<div class="item">
<div class="CNbullet">
</div>
<div class="content">
<h1>Class of 2003</h1>
<div class="body">
<table class="alumni" border="0" cellpadding="0" cellspacing="0" summary=""><tr>
<td>
<table class="alumniEmail" border="0" cellpadding="0" cellspacing="0" summary="">
<tr><td><a href="mailto:[email protected]">Erin Connor</a></td></tr>
<tr><td><a href="mailto:[email protected]">Francis Kim</a></td></tr>
<tr><td><a href="mailto:[email protected]">Luis Rivera</a></td></tr>
<tr><td><a href="mailto:[email protected]">Lisa Stechschulte</a></td></tr>
<tr><td><br /></td></td>
<tr><td><a href="mailto:[email protected]">Emily Stein</a></td></td>
<tr><td></td></td>
<tr><td></td></td>
<tr><td></td></td>
</table>
<td>
<table class="alumniPics" border="0" cellpadding="0" cellspacing="0" summary="">
<tr>
<td><img src="alumni/2003/erin.gif" width=56 height=65 border=0></td>
<td><img src="alumni/2003/francis.gif" width=56 height=65 border=0></td>
<td><img src="alumni/2003/luis.gif" width=56 height=65 border=0></td>
<td><img src="alumni/2003/lisa.gif" width=56 height=65 border=0></td>
</tr>
<tr><td><br /></td></tr>
<tr>
<td><img src="alumni/2003/emily.gif" width=56 height=65 border=0></td>
<td></td>
<td></td>
</tr>
</table>
</td>
</tr></table>
</div>
</div>
</div>
<div class="item">
<div class="CNbullet">
</div>
<div class="content">
<h1>Class of 2002</h1>
<div class="body">
<table class="alumni" border="0" cellpadding="0" cellspacing="0" summary=""><tr>
<td>
<table class="alumniEmail" border="0" cellpadding="0" cellspacing="0" summary="">
<tr><td><a href="mailto:[email protected]">Hayley Feldman</a></td></tr>
<tr><td><a href="mailto:[email protected]">Ben Lowe</a></td></tr>
</table>
<td>
<table class="alumniPics" border="0" cellpadding="0" cellspacing="0" summary="">
<tr>
<td><img src="alumni/2002/hayley.gif" width=56 height=65 border=0></td>
<td><img src="alumni/2002/ben.gif" width=56 height=65 border=0></td>
</tr>
</table>
</td>
</tr></table>
</div>
</div>
</div>
<div class="item">
<div class="CNbullet">
</div>
<div class="content">
<h1>Class of 2001</h1>
<div class="body">
<table class="alumni" border="0" cellpadding="0" cellspacing="0" summary=""><tr>
<td>
<table class="alumniEmail" border="0" cellpadding="0" cellspacing="0" summary="">
<tr><td><a href="mailto:[email protected]">Sheerin Florio</a></td></tr>
<tr><td><a href="mailto:[email protected]">Ari Friedland</a></td></tr>
<tr><td><a href="mailto:%65%6D%61%69%6C%40%6C%6C%61%75%2E%63%6F%6D">Lester Lau</a></td></tr>
<tr><td><a href="mailto:[email protected]">Yvonne Leung</a></td></tr>
<tr><td><br /></td></td>
<tr><td><a href="mailto:[email protected]">Amy McIntire</a></td></td>
<tr><td><a href="mailto:[email protected]">Andrew Mong</a></td></td>
<tr><td><a href="mailto:[email protected]">Titus Presler</a></td></td>
<tr><td><a href="mailto:[email protected]">Andrew Scott</a></td></td>
<tr><td><br /></td></td>
<tr><td><a href="mailto:[email protected]">Becky Simpson</a></td></td>
<tr><td><a href="mailto:[email protected]">Julie Vultaggio</a></td></td>
<tr><td></td></td>
<tr><td></td></td>
</table>
<td>
<table class="alumniPics" border="0" cellpadding="0" cellspacing="0" summary="">
<tr>
<td><img src="alumni/2001/sheerin.gif" width=54 height=63 border=0></td>
<td><img src="alumni/2001/ari.gif" width=54 height=63 border=0></td>
<td><img src="alumni/2001/lester.gif" width=54 height=63 border=0></td>
<td><img src="alumni/2001/yvonne.gif" width=54 height=63 border=0></td>
</tr>
<tr><td><br /></td></tr>
<tr>
<td><img src="alumni/2001/amy.gif" width=54 height=63 border=0></td>
<td><img src="alumni/2001/andrewm.gif" width=54 height=63 border=0></td>
<td><img src="alumni/2001/titus.gif" width=54 height=63 border=0></td>
<td><img src="alumni/2001/andrews.gif" width=54 height=63 border=0></td>
</tr>
<tr><td><br /></td></tr>
<tr>
<td><img src="alumni/2001/becky.gif" width=54 height=63 border=0></td>
<td><img src="alumni/2001/julie.gif" width=54 height=63 border=0></td>
</tr>
</table>
</td>
</tr></table>
</div>
</div>
</div>
<div class="item">
<div class="CNbullet">
</div>
<div class="content">
<h1>Class of 2000</h1>
<div class="body">
<table class="alumni" border="0" cellpadding="0" cellspacing="0" summary=""><tr>
<td>
<table class="alumniEmail" border="0" cellpadding="0" cellspacing="0" summary="">
<tr><td><a href="mailto:[email protected]">Emily Allen</a></td></tr>
<tr><td><a href="mailto:[email protected]">Samara Guzman</a></td></tr>
<tr><td><a href="mailto:[email protected]">Matt Huber</a></td></tr>
<tr><td><a href="mailto:[email protected]">Jenny McDonald</a></td></tr>
<tr><td><br /></td></td>
<tr><td><a href="mailto:[email protected]">Jenn Schaeffer</a></td></td>
<tr><td><a href="mailto:[email protected]">Jeremy Tijerina</a></td></td>
<tr><td><a href="mailto:[email protected]">Matthew Watkins</a></td></td>
<tr><td><a href="mailto:[email protected]">Allister Wesson</a></td></td>
</table>
<td>
<table class="alumniPics" border="0" cellpadding="0" cellspacing="0" summary="">
<tr>
<td><img src="alumni/2000/emily.gif" width=54 height=63></td>
<td><img src="alumni/2000/samara.gif" width=54 height=63></td>
<td><img src="alumni/2000/matth.gif" width=54 height=63></td>
<td><img src="alumni/2000/jennym.gif" width=54 height=63></td>
</tr>
<tr><td><br /></td></tr>
<tr>
<td><img src="alumni/2000/jenns.gif" width=54 height=63 border=0></td>
<td><img src="alumni/2000/jeremy.gif" width=54 height=63 border=0></td>
<td><img src="alumni/2000/mattw.gif" width=54 height=63 border=0></td>
<td><img src="alumni/2000/allie.gif" width=54 height=63 border=0></td>
</tr>
</table>
</td>
</tr></table>
</div>
</div>
</div>
<div class="item">
<div class="CNbullet">
</div>
<div class="content">
<h1>Class of 1999</h1>
<div class="body">
<table class="alumni" border="0" cellpadding="0" cellspacing="0" summary=""><tr>
<td>
<table class="alumniEmail" border="0" cellpadding="0" cellspacing="0" summary="">
<tr><td><a href="http://www.andreblack.com" target="newwindow">Andre Black</a></td></tr>
<tr><td><a href="mailto:[email protected]">Hilary Schroeder</a></td></tr>
<tr><td><a href="mailto:[email protected]">Matt Tierney</a></td></tr>
</table>
<td>
<table class="alumniPics" border="0" cellpadding="0" cellspacing="0" summary="">
<tr>
<td><img src="alumni/1999/andre.gif" width=54 height=63 border=0></td>
<td><img src="alumni/1999/hilary.gif" width=54 height=63 border=0></td>
<td><img src="alumni/1999/mattt.gif" width=54 height=63 border=0></td>
</tr>
</table>
</td>
</tr></table>
</div>
</div>
</div>
<div class="item">
<div class="CNbullet">
</div>
<div class="content">
<h1>Class of 1998</h1>
<div class="body">
<table class="alumni" border="0" cellpadding="0" cellspacing="0" summary=""><tr>
<td>
<table class="alumniEmail" border="0" cellpadding="0" cellspacing="0" summary="">
<tr><td><a href="mailto:[email protected]">Alenda Chang</a></td></tr>
<tr><td><a href="mailto:[email protected]">Audrey Daigger</a></td></tr>
<tr><td><a href="mailto:[email protected]">Jesse Eggert</a></td></tr>
<tr><td><a href="mailto:[email protected]">Ken Ho</a></td></tr>
<tr><td><br /></td></td>
<tr><td>Kate Kennen</td></td>
<tr><td><a href="mailto:[email protected]">Sara Maamouri</a></td></td>
<tr><td></td></td>
<tr><td></td></td>
</table>
<BR><BR></i></font></td>
<td>
<table class="alumniPics" border="0" cellpadding="0" cellspacing="0" summary="">
<tr>
<td><img src="alumni/1998/alenda.gif" width=54 height=63 border=0></td>
<td><img src="alumni/1998/audrey.gif" width=54 height=63 border=0></td>
<td><img src="alumni/1998/jesse.gif" width=54 height=63 border=0></td>
<td><img src="alumni/1998/ken.gif" width=54 height=63 border=0></td>
</tr>
<tr><td><br /></td></tr>
<tr>
<td><img src="alumni/1998/kate.gif" width=54 height=63 border=0></td>
<td><img src="alumni/1998/sara.gif" width=54 height=63 border=0></td>
</tr>
</table>
</td>
</tr></table>
</div>
</div>
</div>
<div class="item">
<div class="CNbullet">
</div>
<div class="content">
<h1>Class of 1997</h1>
<div class="body">
<table class="alumni" border="0" cellpadding="0" cellspacing="0" summary=""><tr>
<td>
<table class="alumniEmail" border="0" cellpadding="0" cellspacing="0" summary="">
<tr><td>Will Boericke</td></tr>
<tr><td><a href="mailto:[email protected]">Doug Cullen</a></td></tr>
<tr><td>Roger Hwang</td></tr>
<tr><td>Heather Mitchell</td></tr>
<tr><td><br /></td></td>
<tr><td><a href="mailto:[email protected]">Mike Murdoch</a></td></td>
<tr><td><a href="mailto:[email protected]">Maoko Naganuma</a></td></td>
<tr><td><a href="mailto:[email protected]">Luis Rodriguez</a></td></td>
<tr><td><a href="mailto:[email protected]">Jen Yax</a></td></td>
</table>
<td>
<table class="alumniPics" border="0" cellpadding="0" cellspacing="0" summary="">
<tr>
<td><img src="alumni/1997/will.gif" width=54 height=63 border=0></td>
<td><img src="alumni/1997/doug.gif" width=54 height=63 border=0></td>
<td><img src="alumni/1997/roger.gif" width=54 height=63 border=0></td>
<td><img src="alumni/1997/heather.gif" width=54 height=63 border=0></td>
</tr>
<tr><td><br /></td></tr>
<tr>
<td><img src="alumni/1997/mike.gif" width=54 height=63 border=0></td>
<td><img src="alumni/empty.gif" width=56 height=65 border=0></td>
<td><img src="alumni/1997/luis.gif" width=54 height=63 border=0></td>
<td><img src="alumni/1997/jen.gif" width=54 height=63 border=0></td>
</tr>
</table>
</td>
</tr></table>
</div>
</div>
</div>
<div class="item">
<div class="CNbullet">
</div>
<div class="content">
<h1>Class of 1996</h1>
<div class="body">
<table class="alumni" border="0" cellpadding="0" cellspacing="0" summary=""><tr>
<td>
<table class="alumniEmail" border="0" cellpadding="0" cellspacing="0" summary="">
<tr><td><a href="mailto:mailto:[email protected]">Linnea Larson</a></td></tr>
</table>
<td>
<table class="alumniPics" border="0" cellpadding="0" cellspacing="0" summary="">
<tr>
<td><img src="alumni/1996/linnea.gif" width=54 height=63 border=0></td>
</tr>
</table>
</td>
</tr></table>
</div>
</div>
</div>
<div class="item">
<div class="CNbullet">
</div>
<div class="content">
<h1>Class of 1995</h1>
<div class="body">
<table class="alumni" border="0" cellpadding="0" cellspacing="0" summary=""><tr>
<td>
<table class="alumniEmail" border="0" cellpadding="0" cellspacing="0" summary="">
<tr><td><a href="mailto:[email protected]">Michael Beversdorf</a></td></tr>
<tr><td>Cara Roberts</td></tr>
<tr><td><a href="mailto:[email protected]">Mayank Thanawala</a></td></tr>
</table>
<td>
<table class="alumniPics" border="0" cellpadding="0" cellspacing="0" summary="">
<tr>
<td><img src="alumni/empty.gif" width=56 height=65 border=0></td>
<td><img src="alumni/empty.gif" width=56 height=65 border=0></td>
<td><img src="alumni/1996/mayank.gif" width=54 height=63 border=0></td>
</tr>
</table>
</td>
</tr></table>
</div>
</div>
</div>
<div class="item">
<div class="CNbullet">
</div>
<div class="content">
<h1>Class of 1994</h1>
<div class="body">
<table class="alumni" border="0" cellpadding="0" cellspacing="0" summary=""><tr>
<td>
<table class="alumniEmail" border="0" cellpadding="0" cellspacing="0" summary="">
<tr><td>Elaine Alpern</td></tr>
<tr><td><a href="mailto:[email protected]">Cindy Crowell Peña</a></td></tr>
<tr><td>Michael D'Acunto</td></tr>
<tr><td><a href="mailto:[email protected]">Laura Beazley Foody</a></td></tr>
<tr><td><br /></td></td>
<tr><td><a href="mailto:[email protected]">Sean Safford</a></td></td>
<tr><td>Lisa Westlake</td></td>
</table>
<td>
<table class="alumniPics" border="0" cellpadding="0" cellspacing="0" summary="">
<tr>
<td><img src="alumni/empty.gif" width=56 height=65 border=0></td>
<td><img src="alumni/empty.gif" width=56 height=65 border=0></td>
<td><img src="alumni/empty.gif" width=56 height=65 border=0></td>
<td><img src="alumni/empty.gif" width=56 height=65 border=0></td>
</tr>
<tr><td><br /></td></tr>
<tr>
<td><img src="alumni/empty.gif" width=56 height=65 border=0></td>
<td><img src="alumni/empty.gif" width=56 height=65 border=0></td>
</tr>
</table>
</td>
</tr></table>
</div>
</div>
</div>
<div class="item">
<div class="CNbullet">
</div>
<div class="content">
<h1>Class of 1993</h1>
<div class="body">
<table class="alumni" border="0" cellpadding="0" cellspacing="0" summary=""><tr>
<td>
<table class="alumniEmail" border="0" cellpadding="0" cellspacing="0" summary="">
<tr><td>Anouk Flambert</td></tr>
<tr><td>Mike Gilbert</td></tr>
<tr><td>Kristin Iglesias</td></tr>
<tr><td><a href="mailto:[email protected]">Larry Kass</a></td></tr>
<tr><td><br /></td></td>
<tr><td><a href="mailto:[email protected]">John Rueppel</a></td></td>
<tr><td><a href="mailto:[email protected]">Aparna Venkatessan</a></td></td>
</table>
<td>
<table class="alumniPics" border="0" cellpadding="0" cellspacing="0" summary="">
<tr>
<td><img src="alumni/empty.gif" width=56 height=65 border=0></td>
<td><img src="alumni/empty.gif" width=56 height=65 border=0></td>
<td><img src="alumni/empty.gif" width=56 height=65 border=0></td>
<td><img src="alumni/empty.gif" width=56 height=65 border=0></td>
</tr>
<tr><td><br /></td></tr>
<tr>
<td><img src="alumni/empty.gif" width=56 height=65 border=0></td>
<td><img src="alumni/empty.gif" width=56 height=65 border=0></td>
</tr>
</table>
</td>
</tr></table>
</div>
</div>
</div>
<div class="item">
<div class="CNbullet">
</div>
<div class="content">
<h1>Class of 1992</h1>
<div class="body">
<table class="alumni" border="0" cellpadding="0" cellspacing="0" summary=""><tr>
<td>
<table class="alumniEmail" border="0" cellpadding="0" cellspacing="0" summary="">
<tr><td><a href="mailto:[email protected]">Sarah Levine</a></td></tr>
<tr><td><a href="mailto:[email protected]">Mike Liu</a></td></tr>
<tr><td><a href="mailto:[email protected]">Brian Sagrestano</a></td></tr>
</table>
<td>
<table class="alumniPics" border="0" cellpadding="0" cellspacing="0" summary="">
<tr>
<td><img src="alumni/empty.gif" width=56 height=65 border=0></td>
<td><img src="alumni/empty.gif" width=56 height=65 border=0></td>
<td><img src="alumni/1992/brian.gif" width=56 height=65 border=0></td>
</tr>
</table>
</td>
</tr></table>
</div>
</div>
</div>
<div class="item">
<div class="CNbullet">
</div>
<div class="content">
<h1>Class of 1991</h1>
<div class="body">
<table class="alumni" border="0" cellpadding="0" cellspacing="0" summary=""><tr>
<td>
<table class="alumniEmail" border="0" cellpadding="0" cellspacing="0" summary="">
<tr><td><a href="mailto:[email protected]">Britt Abel</a></td></tr>
<tr><td><a href="mailto:[email protected]">Mark Adams</a></td></tr>
<tr><td><a href="mailto:[email protected]">Scott Berglechner</a></td></tr>
<tr><td><a href="mailto:[email protected]">Carol Buckley</a></td></tr>
<tr><td><br /></td></td>
<tr><td><a href="mailto:[email protected]">Ian Kline</a></td></td>
<tr><td><a href="mailto:[email protected]">Vicki Macheski</a></td></td>
<tr><td><a href="mailto:[email protected]">Marie Porceddu</a></td></td>
<tr><td><a href="mailto:[email protected]">Andrew Sussman</a></td></td>
</table>
<td>
<table class="alumniPics" border="0" cellpadding="0" cellspacing="0" summary="">
<tr>
<td><img src="alumni/empty.gif" width=56 height=65 border=0></td>
<td><img src="alumni/1991/mark.jpg" width=54 height=63 border=0></td>
<td><img src="alumni/empty.gif" width=56 height=65 border=0></td>
<td><img src="alumni/empty.gif" width=56 height=65 border=0></td>
</tr>
<tr><td><br /></td></tr>
<tr>
<td><img src="alumni/1991/ian.jpg" width=54 height=63 border=0></td>
<td><img src="alumni/1991/vicki.jpg" width=54 height=63 border=0></td>
<td><img src="alumni/empty.gif" width=56 height=65 border=0></td>
<td><img src="alumni/empty.gif" width=56 height=65 border=0></td>
</tr>