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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
|
<!DOCTYPE HTML>
<html lang="en-US">
<head>
<title>CNN.com - Breaking News, U.S., World, Weather, Entertainment & Video News</title>
<meta http-equiv="content-type" content="text/html;charset=utf-8"/>
<meta http-equiv="last-modified" content="2012-12-17T17:12:52Z"/>
<meta http-equiv="refresh" content="1800;url=http://www.cnn.com/?refresh=1"/>
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE8"/>
<meta name="robots" content="index,follow"/>
<meta name="googlebot" content="noarchive"/>
<meta name="description" content="CNN.com delivers the latest breaking news and information on the latest top stories, weather, business, entertainment, politics, and more. For in-depth coverage, CNN.com provides special reports, video, audio, photo galleries, and interactive guides."/>
<meta name="keywords" content="CNN,CNN news,CNN.com,CNN TV,news,news online,breaking news,U.S. news,world news,weather,business,CNN Money,sports,politics,law,technology,entertainment,education,travel,health,special reports,autos,developing story,news video,CNN Intl"/>
<meta name="application-name" content="CNN"/>
<meta name="msapplication-tooltip" content="Breaking News, U.S., World, Weather, Entertainment and Video News"/>
<meta name="msapplication-task" content="name=News Pulse;action-uri=http://newspulse.cnn.com/;icon-uri=http://www.cnn.com/favicon.ie9.ico"/>
<meta name="msapplication-task" content="name=iReport;action-uri=http://ireport.cnn.com;icon-uri=http://ireport.cnn.com/favicon.ico"/>
<meta name="viewport" content="width=1024"/>
<meta property="fb:app_id" content="80401312489"/>
<meta property="fb:page_id" content="129343697106537"/>
<meta name="msapplication-TileColor" content="#CA0002"/>
<meta name="msapplication-TileImage" content="http://i.cdn.turner.com/cnn/2012/images/10/15/cnn_logo_144_144.png"/>
<link href="http://www.cnn.com/" rel="canonical"/>
<link href="http://www.cnn.com/favicon.ie9.ico" rel="Shortcut Icon" type="image/x-icon"/>
<link href="/tools/search/cnncom.xml" rel="search" title="CNN.com" type="application/opensearchdescription+xml"/>
<link href="/tools/search/cnncomvideo.xml" rel="search" title="CNN.com Video" type="application/opensearchdescription+xml"/>
<link href="http://i.cdn.turner.com/cnn/.e/img/3.0/global/misc/apple-touch-icon.png" rel="apple-touch-icon" type="image/png"/>
<link href="http://rss.cnn.com/rss/cnn_topstories.rss" rel="alternate" title="CNN - Top Stories [RSS]" type="application/rss+xml"/>
<link href="http://rss.cnn.com/rss/cnn_latest.rss" rel="alternate" title="CNN - Recent Stories [RSS]" type="application/rss+xml"/>
<link href="http://edition.cnn.com" hreflang="en-gb" rel="alternate" title="CNN International" type="text/html"/>
<link href="http://arabic.cnn.com" hreflang="ar" rel="alternate" title="CNN Arabic" type="text/html"/>
<link href="http://mexico.cnn.com" hreflang="es" rel="alternate" title="CNN Mexico" type="text/html"/>
<link href="http://z.cdn.turner.com/cnn/tmpl_asset/static/www_homepage/1899/css/hplib-min.css" rel="stylesheet" type="text/css"/>
<script src="http://z.cdn.turner.com/cnn/.e/js/libs/jquery-1.7.2.min.js"></script>
<script src="http://z.cdn.turner.com/cnn/.e/js/libs/jquery.timeago.min.js"></script>
<script src="http://z.cdn.turner.com/cnn/.e/js/libs/protoaculous.1.8.2.min.js"></script>
<script src="http://z.cdn.turner.com/cnn/tmpl_asset/static/www_homepage/1899/js/hplib-min.js"></script>
<script src="http://cdn.optimizely.com/js/131788053.js"></script>
<script>
var cnnIsHomePage=true,
cnnPageName="CNN Home Page",
cnnSectionName="CNN Home Page",
sectionName="homepage",
cnn_edtnswtchver="www",
cnnCurrTime=new Date(1355765774000),
cnnCurrHour=12,
cnnCurrMin=36,
cnnCurrDay='Mon',
weatherTitle='News';
</script>
<script>
if ($('cnn_GallerySliderContainer')){cnn_SectionGallery=new cnn_GallerySlider();}
if ($('cnn_GallerySliderContainer')){cnn_SectionGallery=new cnn_GallerySlider();}
cnn_metadata.section=['cnn homepage','cnn:cnn homepage'];
cnn_metadata.friendly_name='CNN Home Page';
cnn_metadata.template_type='index';
var selectedEdition=allCookies['SelectedEdition'],
galleryAdDir="/cnn_adspaces/3.0/homepage/main/",
CNN_gallery_0_ad_0="/cnn_adspaces/3.0/homepage/main/bot1.120x90.ad",
CNN_gallery_0_ad_1="/cnn_adspaces/3.0/homepage/main/bot2.120x90.ad",
CNN_gallery_0_ad_2="/cnn_adspaces/3.0/homepage/main/bot3.120x90.ad",
CNN_gallery_0_ad_3="/cnn_adspaces/3.0/homepage/main/bot4.120x90.ad",
CNN_gallery_0_ad_4="/cnn_adspaces/3.0/homepage/main/bot5.120x90.ad",
CNN_gallery_0_ad_5="/cnn_adspaces/3.0/homepage/main/bot6.120x90.ad",
CNN_gallery_0_ad_6="/cnn_adspaces/3.0/homepage/main/bot7.120x90.ad",
CNN_gallery_0_ad_7="/cnn_adspaces/3.0/homepage/main/bot8.120x90.ad",
CNN_gallery_0_ad_8="/cnn_adspaces/3.0/homepage/main/bot9.120x90.ad",
CNN_gallery_1_ad_0="/cnn_adspaces/3.0/homepage/main/bot4.120x90.ad",
CNN_gallery_1_ad_1="/cnn_adspaces/3.0/homepage/main/bot5.120x90.ad",
CNN_gallery_1_ad_2="/cnn_adspaces/3.0/homepage/main/bot6.120x90.ad",
CNN_gallery_2_ad_0="/cnn_adspaces/3.0/homepage/main/bot7.120x90.ad",
CNN_gallery_2_ad_1="/cnn_adspaces/3.0/homepage/main/bot8.120x90.ad",
CNN_gallery_2_ad_2="/cnn_adspaces/3.0/homepage/main/bot9.120x90.ad";
</script>
</head>
<body id="cnnMainPage">
<!-- ADSPACE: homepage/main/top.1x1 --><div align="center" style="padding: 0; margin: 0; border: 0;"><script>
cnnad_renderAd("http://ads.cnn.com/js.ng/site=cnn&cnn_pagetype=main&cnn_position=1x1_top&cnn_rollup=homepage&page.allowcompete=no");</script></div>
<div id="cnn_ipadappbanner"></div>
<div id="cnn_hdr"> <div id="cnn_hdr-prompt" style="display:none"><div class="hdr-wrap" id="cnn_hdr-promptcntnt"></div></div> <div id="cnn_hdr-main"> <div class="hdr-wrap"> <div id="hdr-banner"> <a href="/" id="hdr-banner-title"><img src="http://i.cdn.turner.com/cnn/.e/img/3.0/global/header/hdr-main.gif" alt="CNN" border="0" height="82" width="119"/></a> </div> <div id="hdr-editions"> <ul> <li class="no-pad-left"><span><a href="javascript:cnn_initeditionhtml(3);" class="cnn_hdr-editionlnk">SET EDITION</a>: U.S.</span></li> <li><a id="cnn_switchEdition_intl" href="http://edition.cnn.com/?hpt=ed_Intl" title="CNN INTERNATIONAL">INTERNATIONAL</a></li> <li><a href="http://mexico.cnn.com/?hpt=ed_Mexico" hreflang="es" title="CNN MÉXICO">MÉXICO</a></li> <li class="no-border"><a href="http://arabic.cnn.com/?hpt=ed_Arabic" hreflang="ar" title="CNN ARABIC">ARABIC</a></li> </ul> <div class="cnn_clear"></div><div style="padding-top:2px"> <ul> <li class="no-pad-left no-border no-pad-right"><span><a href="/CNN/Programs" class="cnn_hdr-editionlnk">TV</a>: </span></li> <li class="no-pad-left"><a href="/cnn/programs/" title="CNN TV programming schedule">CNN</a></li> <li><a href="/cnni/" title="CNN International TV programming schedule">CNNi</a></li> <li><a href="http://cnnespanol.cnn.com/" hreflang="es" title="CNN in Spanish">CNN en Español</a></li> <li class="no-border"><a href="http://www.hlntv.com">HLN</a></li> </ul> </div> </div> <div id="hdr-auth"> <ul> <li><a href="javascript:void(0);" onclick="showOverlay('profile_signup_overlay');return false;" title="Sign up">Sign up</a></li> <li class="no-border no-pad-right"><a href="javascript:void(0);" onclick="showOverlay('profile_signin_overlay');return false;" title="Log in">Log in</a></li> </ul> </div> <div id="hdr-search"> <form method="get" action="http://www.cnn.com/search/" onsubmit="return cnnSearch(this);"> <div class="ftr-search-datacntr"> <div class="ftr-search-tfield"><input id="hdr-search-box" maxlength="100" name="query" size="12" type="text" value=""/></div> <div class="ftr-search-sicon"><input alt="Search" height="21" src="http://i.cdn.turner.com/cnn/.e/img/3.0/search/btn_search_hp_text.gif" type="image" width="55"/></div> </div> <input name="primaryType" type="hidden" value="mixed"/><input name="sortBy" type="hidden" value="relevance"/><input name="intl" type="hidden" value="false"/> </form> </div> </div> </div> <div id="cnn_hdr-nav"> <ul id="us-menu"> <li class="no-border"><a href="/" class="nav-on" id="nav-home" title="">Home</a></li> <li class="no-border"><a href="/video/" class="nav-media no-border" id="nav-video" title="Video Breaking News Videos from CNN.com"><span>TV & Video</span></a></li> <li class="no-border"><a href="/trends/" class="nav-media" id="nav-trends" title="CNN Trends powered by Zite"><span>CNN Trends</span></a></li> <li class=""><a href="/US/" class="" id="nav-us" title="U.S. News, Headlines, Stories, and Video from CNN.com"><span>U.S.</span></a></li> <li class=""><a href="/WORLD/" class="" id="nav-world" title="World News International Headlines Stories and Video from CNN.com"><span>World</span></a></li> <li class=""><a href="/POLITICS/" class="" id="nav-politics" title="Election and Politics News from CNN.com"><span>Politics</span></a></li> <li class=""><a href="/JUSTICE/" class="" id="nav-justice" title="Justice News Courts Celebrity Docket and Law News from CNN.com"><span>Justice</span></a></li> <li class=""><a href="/SHOWBIZ/" class="" id="nav-entertainment" title="Entertainment News Celebrities Movies and TV from CNN.com"><span>Entertainment</span></a></li> <li class=""><a href="/TECH/" class="" id="nav-tech" title="Technology Computers Internet and Personal Tech News from CNN.com"><span>Tech</span></a></li> <li class=""><a href="/HEALTH/" class="" id="nav-health" title="Health News Medicine Diet Fitness and Parenting from CNN.com"><span>Health</span></a></li> <li class=""><a href="/LIVING/" class="" id="nav-living" title="Living News Personal Work and Home from CNN.com"><span>Living</span></a></li> <li class=""><a href="/TRAVEL/" class="" id="nav-travel" title="Travel News Vacations Destinations and Video from CNN.com"><span>Travel</span></a></li> <li class=""><a href="/OPINION/" class="" id="nav-opinion" title="Opinion Editorial Analysis and Insight from CNN.com"><span>Opinion</span></a></li> <li class=""><a href="http://ireport.cnn.com/" class="" id="nav-ireport" title="CNN iReport – Share your story, discuss the issues with CNN.com"><span>iReport</span></a></li> <li class=""><a href="http://money.cnn.com/" class="" id="nav-money" title="Business financial personal finance news from CNNMoney"><span>Money</span><img src="http://i.cdn.turner.com/cnn/.e/img/3.0/global/header/nav-arrow.gif" width="3" height="5" alt="" /></a></li> <li class=""><a href="http://sportsillustrated.cnn.com/?xid=cnnnav" class="" id="nav-sports" title="Breaking news real-time scores and daily analysis from Sports Illustrated SI.com"><span>Sports</span><img src="http://i.cdn.turner.com/cnn/.e/img/3.0/global/header/nav-arrow.gif" width="3" height="5" alt="" /></a></li> </ul> </div> </div>
<div align="center">
<div id="cnn_maincntnr">
<!-- this is where the breaking news CSI code will go -->
<div id="cnnBannerContainer"></div>
<script type="text/javascript">
CSIManager.getInstance().call('/.element/ssi/www/breaking_news/3.0/banner.html','','cnnBannerContainer',cnnRenderDomesticBanner);
</script>
<div id="cnnSetEditionContainer"></div>
<div id="cnnMakeHPContainer"></div>
<div class="cnn_contentarea">
<div id="cnn_toptstmparea"><div>
<div style="float:left"><span>updated 12:12 PM EST, Mon December 17, 2012</span></div>
<div style="float:right"><div class="cnnOpin">
<!--[if IE]>
<a href class="realmLink" onclick="this.style.behavior='url(#default#homepage)';this.setHomePage(window.location);" href="Javascript:void();">Make CNN Your Homepage</a>
<style>#makeHPLink{display:none;}</style>
<![endif]-->
<a class="realmLink" href="#" id="makeHPLink" onclick="cnnMakeHP('homepage_set_overlay');">Make CNN Your Homepage</a>
</div></div>
<script>UAstring=navigator.userAgent;if (UAstring.indexOf('iPad')>-1){$('makeHPLink').hide();}</script>
</div></div>
</div>
<div class="cnn_pad2top cnn_shdspc"></div>
<div class="cnn_hpinthenews">
<div class="cnn_hpinthenewscntr">
<ul>
<li class="cnn_hpinthenewshdr"><span>In the news</span></li>
<li class="cnn_hpinthenewsl1"><a href="http://www.cnn.com/SPECIALS/us/connecticut-school-shooting/index.html?hpt=hp_inthenews"><span>Connecticut school shooting</span></a></li>
<li class="cnn_hpinthenewsl2"><a href="http://www.cnn.com/interactive/2012/12/us/sandy-hook-victims/index.html?hpt=hp_inthenews"><span>The victims</span></a></li>
<li class="cnn_hpinthenewsl3"><a href="/2012/12/15/us/iyw-help-for-victims-of-sandy-hook-shooting/index.html?hpt=hp_inthenews"><span>How to help</span></a></li>
<li class="cnn_hpinthenewsl4"><a href="/2012/12/14/world/americas/analysis-connecticut-shooting-mann/index.html?hpt=hp_inthenews"><span>Gun control</span></a></li>
<li class="cnn_hpinthenewsl5"><a href="/2012/12/17/politics/fiscal-cliff/index.html?hpt=hp_inthenews"><span>Fiscal cliff</span></a></li>
<li class="cnn_hpinthenewsl6"><a href="/2012/12/15/us/us-hillary-clinton-concussion/index.html?hpt=hp_inthenews"><span>Hillary Clinton</span></a></li>
<li class="cnn_hpinthenewsl7"><a href="/2012/12/15/politics/obama-secretary-of-state/index.html?hpt=hp_inthenews"><span>John Kerry</span></a></li>
<li class="cnn_hpinthenewsl8"><a href="/2012/12/15/world/south-africa-mandela/index.html?hpt=hp_inthenews"><span>Mandela</span></a></li>
<li class="cnn_hpinthenewsl9"><a href="/2012/12/16/us/aesha-surgery-healing/index.html?hpt=hp_inthenews"><span>Aesha</span></a></li>
</ul>
</div>
</div>
<div class="cnn_pad2top cnn_shdspc"></div>
<div class="cnn_contentarea cnn_shdcamtt1l250 cnn_shdcamtt12010">
<div class="cnn_shdcaheader"></div>
<div id="cnn_maintopt1">
<div id="cnn_maint1lftf">
<!-- landscape T1 -->
<div id="cnn_maintt1imgbul">
<div class="cnn_main10t1cntnt">
<div class="cnn_main10t1dlne"></div>
<div class="cnn_shdcamtt12010bn">
<div>
</div>
<h1 style="text-align:center;padding-top:0"><a href="/2012/12/17/us/connecticut-school-shooting/index.html?hpt=hp_t1" target="">'We have wept with you'</a></h1>
</div>
<div class="cnn_main10t1lcntr">
<h1><a href="/2012/12/17/us/connecticut-school-shooting/index.html?hpt=hp_t1" target="">Newtown begins saying goodbyes</a></h1>
<p>
<div id="cnn_tc_t1_rich_text">
<div class="cnn_two_column_t_rich_text">
A day after President Obama told a packed auditorium in Newtown that he would use "whatever power" he has to prevent more tragedies, the first funerals for the 20 children killed will be held. <a href='http://www.cnn.com/2012/12/17/us/connecticut-school-shooting/index.html'>FULL STORY</a>
</div>
</div>
<div class="cnn_two_column_t_rich_text">
<span class="cnn_main10t1slnks">
</span>
</div>
</p>
<div class="cnn_main10t1sbbin2c">
<ul class="cnn_bulletbin"> <li> <span class="cnnLiveWOOL">LIVE:</span> <a href=/video/?/video/cvplive/cvpstream1&hpt=hp_t1>Police update on shootings</a> <a href=/video/?/video/cvplive/cvpstream1&hpt=hp_t1 target=""><img class="cnnVideoIcon" width="16" height="10" border="0" alt="LIVE" src="http://i.cdn.turner.com/cnn/.e/img/3.0/global/icons/video_icon.gif"/></a> </li> <li> <span class="cnnPreWOOL"></span> <a href="http://news.blogs.cnn.com/2012/12/17/first-funerals-today-for-children-killed-at-connecticut-school/?hpt=hp_t1">Blog: Latest developments</a> <span class="cnnPostWOOL"></span> </li> <li> <span class="cnnPreWOOL"></span> <a href="http://politicalticker.blogs.cnn.com/2012/12/16/breaking-we-have-wept-with-you-obama-says-in-newtown-speech/?hpt=hp_t1">Obama's speech</a> <span class="cnnPostWOOL"></span> | <span class="cnnPreWOOL"></span> <a href="/2012/12/15/us/iyw-help-for-victims-of-sandy-hook-shooting/index.html?hpt=hp_t1">How to help</a> <span class="cnnPostWOOL"></span> </li> <li> <span class="cnnPreWOOL">CNN Affiliates: </span> <a href="http://www.wtnh.com/?hpt=hp_t1" target="_blank">WTNH</a> <span class="cnnPostWOOL"></span> | <span class="cnnPreWOOL"></span> <a href="http://www.wfsb.com/?hpt=hp_t1" target="_blank">WFSB </a> <span class="cnnPostWOOL"></span> | <span class="cnnPreWOOL"></span> <a href="http://www.ctnow.com/?hpt=hp_t1" target="_blank">CTNow</a> <span class="cnnPostWOOL"></span> </li> <li> <span class="cnnPreWOOL"></span> <a href="/2012/12/16/us/connecticut-nancy-lanza-profile/index.html?hpt=hp_t1">Shooter's mother had 'heart of gold'</a> <span class="cnnPostWOOL"></span> </li> <li> <span class="cnnPreWOOL"></span> <a href="/2012/12/14/us/gallery/newtown-shooting/index.html?hpt=hp_t1">Photos: Shooting</a> <span class="cnnPostWOOL"></span> | <span class="cnnPreWOOL"></span> <a href="/2012/12/14/us/gallery/newtown-reaction/index.html?hpt=hp_t1">Reaction</a> <span class="cnnPostWOOL"></span> | <span class="cnnPreWOOL"></span> <a href="http://www.cnn.com/video/?/video/cvptve/cvpstream1&hpt=hp_t1">CNN TV</a> <span class="cnnPostWOOL"></span> <a href=http://www.cnn.com/video/?/video/cvptve/cvpstream1&hpt=hp_t1 target=""><img class="cnnVideoIcon" width="16" height="10" border="0" alt="CNN TV" src="http://i.cdn.turner.com/cnn/.e/img/3.0/global/icons/video_icon.gif"/></a> </li> </ul> </div>
</div>
<div class="cnn_main10t1rcntr">
<div class="cnn_relpostn">
<div id="cnnCVP1" class="cnn_mtt1img">
</div>
<script>
$j(document).ready(function () {
'use strict';
callCnnVideo({
key: 'C1',
markupid: 'cnnCVP1',
video: 'us/2012/12/17/natpkg-ct-newtown-vigil.cnn',
thumb: 'http://i2.cdn.turner.com/cnn/dam/assets/121217122511-02-newtown-vigil-1216-c1-main.jpg',
placement: 'breakingnews',
adsection: 'cnn.com_main_homepage',
headline: '',
source: 'CNN',
sourceUrl: '',
url: '/2012/12/17/us/connecticut-school-shooting/index.html?hpt=hp_t1',
section: 'breakingnews'
});
});
</script>
</div>
</div>
<div class="cnn_clear"></div>
</div>
</div>
<!-- T2s -->
<div class="cnn_maint1dline"></div>
<div id="cnn_maintt2bul">
<div class="cnn_mtt1content">
<h4>School Shootings: How do we heal</h4> <div class="cnn_divline"></div> <ul class="cnn_bulletbin"> <li> <span class="cnnPreWOOL"></span> <a href="/2012/12/16/us/connecticut-school-shooting-narrative/index.html?hpt=hp_t2">Minutes of carnage lead to days of grief</a> <span class="cnnPostWOOL"></span> </li> <li> <span class="cnnPreWOOL"></span> <a href="http://cnnradio.cnn.com/2012/12/17/newtown-wonders-how-to-heal/?hpt=hp_t2">Listen: Newtown wonders how to heal</a> <span class="cnnPostWOOL"></span> </li> <li> <span class="cnnPreWOOL"></span> <a href="/2012/12/17/opinion/gergen-gun-culture/index.html?hpt=hp_t2">Gergen: Honor the victims with action</a> <span class="cnnPostWOOL"></span> </li> <li> <span class="cnnPreWOOL"></span> <a href="http://politicalticker.blogs.cnn.com/?hpt=hp_t2">Ticker: Senator to introduce gun ban</a> <span class="cnnPostWOOL"></span> </li> <li> <span class="cnnPreWOOL"></span> <a href="/2012/12/17/opinion/frum-leadership-newtown/index.html?hpt=hp_t2">Frum: MADD is model for gun control</a> <span class="cnnPostWOOL"></span> </li> <li> <span class="cnnPreWOOL"></span> <a href="http://politicalticker.blogs.cnn.com/2012/12/16/gun-debate-gains-traction-as-some-lawmakers-say-its-time-to-act/?hpt=hp_t2">Gun debate gains traction</a> <span class="cnnPostWOOL"></span> </li> <li> <span class="cnnPreWOOL"></span> <a href="/video/?hpt=hp_t2#/video/bestoftv/2012/12/17/pmt-ct-shooting.cnn">Debate over full background checks</a> <span class="cnnPostWOOL"></span> <a href=/video/?hpt=hp_t2#/video/bestoftv/2012/12/17/pmt-ct-shooting.cnn target=""><img class="cnnVideoIcon" width="16" height="10" border="0" alt="Debate over full background checks" src="http://i.cdn.turner.com/cnn/.e/img/3.0/global/icons/video_icon.gif"/></a> </li> <li> <span class="cnnPreWOOL"></span> <a href="http://healthland.time.com/2012/12/17/i-am-adam-lanzas-mother-when-parents-are-afraid-of-their-children/?hpt=hp_t2" target="_blank">When parents are afraid of kids</a> <span class="cnnPostWOOL">Time</span> </li> <li> <span class="cnnPreWOOL"></span> <a href="/2012/12/16/us/newtown-scene/index.html?hpt=hp_t2">Town's season of peace destroyed</a> <span class="cnnPostWOOL"></span> </li> <li> <span class="cnnPreWOOL"></span> <a href="/2012/12/17/opinion/newman-school-shooters/index.html?hpt=hp_t2">Opinion: The warning signs were there</a> <span class="cnnPostWOOL"></span> </li> <li> <span class="cnnPreWOOL"></span> <a href="/2012/12/17/world/world-newtown-shootings-gun-controls/index.html?hpt=hp_t2">How other countries cope</a> <span class="cnnPostWOOL"></span> </li> </ul><h4>THIS JUST IN</h4> <div class="cnn_divline"></div> <ul class="cnn_bulletbin"> <li> <span class="cnnPreWOOL"></span> <a href="http://politicalticker.blogs.cnn.com/2012/12/17/haley-to-announce-demints-replacement-at-noon/?hpt=hp_t3">New senator named</a> <span class="cnnPostWOOL"></span> | <span class="cnnLiveWOOL c1LW">LIVE:</span> <span class="cnnPreWOOL"></span> <a href=/video/?/video/cvplive/cvpstream3&hpt=hp_t3> </a> <a href=/video/?/video/cvplive/cvpstream3&hpt=hp_t3 target=""><img class="cnnVideoIcon" width="16" height="10" border="0" alt="LIVE" src="http://i.cdn.turner.com/cnn/.e/img/3.0/global/icons/video_icon.gif"/></a> </li> <li> <span class="cnnPreWOOL"></span> <a href="/2012/12/17/politics/fiscal-cliff/index.html?hpt=hp_t3">Boehner's offer heats up fiscal cliff talks</a> <span class="cnnPostWOOL"></span> </li> <li> <span class="cnnPreWOOL"></span> <a href="http://news.blogs.cnn.com/2012/12/16/man-stands-in-mall-parking-lot-fires-50-shots-in-the-air/?hpt=hp_t3">50 shots fired outside mall; no one hit</a> <span class="cnnPostWOOL"></span> </li> <li> <span class="cnnPreWOOL"></span> <a href="/2012/12/17/justice/kansas-officers-killed/index.html?hpt=hp_t3">2 Kansas police officers shot, killed</a> <span class="cnnPostWOOL"></span> </li> <li> <span class="cnnPreWOOL"></span> <a href="/2012/12/15/politics/obama-secretary-of-state/index.html?hpt=hp_t3">Source: Obama to nominate John Kerry</a> <span class="cnnPostWOOL"></span> </li> <li> <span class="cnnPreWOOL"></span> <a href="http://www.cnn.com/interactive/2012/11/politics/obama-cabinet/index.html?hpt=hp_t3">Obama's Cabinet: Who's in, who's out</a> <span class="cnnPostWOOL"></span> </li> <li> <span class="cnnPreWOOL"></span> <a href="/2012/12/15/us/us-hillary-clinton-concussion/index.html?hpt=hp_t3">Hillary Clinton faints, has concussion</a> <span class="cnnPostWOOL"></span> </li> <li> <span class="cnnPreWOOL"></span> <a href="/2012/12/16/world/meast/syria-civil-war/index.html?hpt=hp_t3">Syrian VP calls for 'historic settlement'</a> <span class="cnnPostWOOL"></span> </li> <li> <span class="cnnPreWOOL"></span> <a href="/2012/12/17/world/asia/afghanistan-girls-landmine/index.html?hpt=hp_t3">Landmine kills 10 girls in Afghanistan</a> <span class="cnnPostWOOL"></span> </li> <li> <span class="cnnPreWOOL"></span> <a href="/2012/12/16/world/asia/north-korea-leader/index.html?hpt=hp_t3">Kim Jong Un's year as 'Dear Leader'</a> <span class="cnnPostWOOL"></span> </li> <li> <span class="cnnPreWOOL"></span> <a href="http://money.cnn.com/gallery/smallbusiness/2012/12/17/entrepreneurs-hiring/index.html?hpt=hp_t3">Business owners that are hiring</a> <span class="cnnPostWOOL"></span> </li> <li> <span class="cnnPreWOOL"></span> <a href="/video/?hpt=hp_t3#/video/us/2012/12/14/pkg-dunnan-tv-dangers.cnn">Children at risk from big TVs</a> <span class="cnnPostWOOL"></span> <a href=/video/?hpt=hp_t3#/video/us/2012/12/14/pkg-dunnan-tv-dangers.cnn target=""><img class="cnnVideoIcon" width="16" height="10" border="0" alt="Children at risk from big TVs" src="http://i.cdn.turner.com/cnn/.e/img/3.0/global/icons/video_icon.gif"/></a> </li> <li> <span class="cnnPreWOOL"></span> <a href="/video/?hpt=hp_t3#/video/living/2012/12/13/psalm-book-sale-boston-church-1640.whdh">Church to sell book printed in 1640</a> <span class="cnnPostWOOL"></span> <a href=/video/?hpt=hp_t3#/video/living/2012/12/13/psalm-book-sale-boston-church-1640.whdh target=""><img class="cnnVideoIcon" width="16" height="10" border="0" alt="Church to sell book printed in 1640" src="http://i.cdn.turner.com/cnn/.e/img/3.0/global/icons/video_icon.gif"/></a> </li> <li> <span class="cnnPreWOOL"></span> <a href="/video/?hpt=hp_t3#/video/us/2012/12/12/dnt-cat-rescued-after-week-in-tree.wrtv">Cat rescued after week in tree</a> <span class="cnnPostWOOL"></span> <a href=/video/?hpt=hp_t3#/video/us/2012/12/12/dnt-cat-rescued-after-week-in-tree.wrtv target=""><img class="cnnVideoIcon" width="16" height="10" border="0" alt="Cat rescued after week in tree" src="http://i.cdn.turner.com/cnn/.e/img/3.0/global/icons/video_icon.gif"/></a> </li> <li> <span class="cnnPreWOOL"></span> <a href="http://money.cnn.com/2012/12/14/technology/mobile/walmart-apple-iphone-ipad-sale/index.html?hpt=hp_t3">Wal-Mart cuts prices on iPhone and iPad</a> <span class="cnnPostWOOL"></span> </li> <li> <span class="cnnPreWOOL"></span> <a href="http://insidemovies.ew.com/2012/12/14/man-of-steel-trailer-deep-dive/?hpt=hp_t3" target="_blank">'Man of Steel' -- Clues in trailer?</a> <span class="cnnPostWOOL">EW</span> </li> <li> <span class="cnnPreWOOL"></span> <a href="/video/?hpt=hp_t3#/video/bestoftv/2012/12/13/bts-streisand-rogen-the-guilt-trip-premiere.cnn">Streisand guilted into taking role</a> <span class="cnnPostWOOL"></span> <a href=/video/?hpt=hp_t3#/video/bestoftv/2012/12/13/bts-streisand-rogen-the-guilt-trip-premiere.cnn target=""><img class="cnnVideoIcon" width="16" height="10" border="0" alt="Streisand guilted into taking role" src="http://i.cdn.turner.com/cnn/.e/img/3.0/global/icons/video_icon.gif"/></a> </li> <li> <span class="cnnPreWOOL"></span> <a href="/video/?hpt=hp_t3#/video/living/2012/12/14/early-mistletoe-prank-survey.cnn">Mistletoe prank has stunning result</a> <span class="cnnPostWOOL"></span> <a href=/video/?hpt=hp_t3#/video/living/2012/12/14/early-mistletoe-prank-survey.cnn target=""><img class="cnnVideoIcon" width="16" height="10" border="0" alt="Mistletoe prank has stunning result" src="http://i.cdn.turner.com/cnn/.e/img/3.0/global/icons/video_icon.gif"/></a> </li> <li> <span class="cnnPreWOOL"></span> <a href="/video/?hpt=hp_t3#/video/us/2012/12/13/pkg-strangers-donate-cash-to-family-for-xmas.whas">Kind act helps family's Christmas</a> <span class="cnnPostWOOL"></span> <a href=/video/?hpt=hp_t3#/video/us/2012/12/13/pkg-strangers-donate-cash-to-family-for-xmas.whas target=""><img class="cnnVideoIcon" width="16" height="10" border="0" alt="Kind act helps family's Christmas" src="http://i.cdn.turner.com/cnn/.e/img/3.0/global/icons/video_icon.gif"/></a> </li> <li> <span class="cnnPreWOOL"></span> <a href="/video/?hpt=hp_t3#/video/us/2012/12/13/kplr-ktvi-inflatable-30-ft-santa.kplr-ktvi">30 ft. Santa passed house to house</a> <span class="cnnPostWOOL"></span> <a href=/video/?hpt=hp_t3#/video/us/2012/12/13/kplr-ktvi-inflatable-30-ft-santa.kplr-ktvi target=""><img class="cnnVideoIcon" width="16" height="10" border="0" alt="30 ft. Santa passed house to house" src="http://i.cdn.turner.com/cnn/.e/img/3.0/global/icons/video_icon.gif"/></a> </li> <li> <span class="cnnPreWOOL"></span> <a href="/video/?hpt=hp_t3#/video/sports/2012/12/14/mxp-dallas-mavericks-sing.hln">Watch Dallas Mavericks try to sing</a> <span class="cnnPostWOOL"></span> <a href=/video/?hpt=hp_t3#/video/sports/2012/12/14/mxp-dallas-mavericks-sing.hln target=""><img class="cnnVideoIcon" width="16" height="10" border="0" alt="Watch Dallas Mavericks try to sing" src="http://i.cdn.turner.com/cnn/.e/img/3.0/global/icons/video_icon.gif"/></a> </li> <li> <span class="cnnPreWOOL"></span> <a href="http://news.blogs.cnn.com/?hpt=hp_t3">This Just In: CNN's news blog</a> <span class="cnnPostWOOL"></span> </li> </ul><h4>SPORTS WEEKEND</h4> <div class="cnn_divline"></div> <ul class="cnn_bulletbin"> <li> <span class="cnnPreWOOL"></span> <a href="/2012/12/13/worldsport/gallery/nfl-week-15/index.html?hpt=hp_t4">NFL Week 15: The best photos</a> <span class="cnnPostWOOL"></span> </li> <li> <span class="cnnPreWOOL"></span> <a href="http://www.golf.com/tour-and-news/pga-tour-confidential-2012-season-review-predictions-2013?hpt=hp_t4" target="_blank">Predictions for 2013</a> <span class="cnnPostWOOL">Golf</span> </li> <li> <span class="cnnPreWOOL"></span> <a href="/2012/12/14/opinion/pearlman-western-kentucky-petrino/index.html?hpt=hp_t4">Pearlman: I think Bobby Petrino is slime</a> <span class="cnnPostWOOL"></span> </li> <li> <span class="cnnPreWOOL"></span> <a href="http://sportsillustrated.cnn.com/college-football/news/20121214/bowl-game-pickoff/?hpt=hp_t4">Who'll win bowls</a> <span class="cnnPostWOOL"></span> | <span class="cnnPreWOOL"></span> <a href="http://sportsillustrated.cnn.com/college-football/photos/1212/cfb-bowl-season-most-exciting-players/?hpt=hp_t4">Players to watch</a> <span class="cnnPostWOOL">SI</span> </li> </ul> <div class="cnn_mtt1more"><a href="http://www.cnn.com/trends?hpt=hp_t4" class="cnn_mtpvmsbtn"><img src="http://i.cdn.turner.com/cnn/.e/img/3.0/1px.gif" alt="" border="0"/></a></div>
</div>
</div>
</div>
<div id="cnn_maintoplive">
<div class="cnn_mc2cntr">
<div class="cnn_mc23x1cnntr"> <div class="cnn_mc2hdrcntr cnn_mc2numhdr1"> <div class="cnn_mc2hdr2" style="width:100%">PORTRAITS OF HEROISM</div> <div class="cnn_divline"></div> </div> <div class="cnn_mc2nodecntr"> <div class="cnn_mc2node"> <div class="cnn_mtlplnimg"> <div><a href="/2012/12/17/us/connecticut-shooting-teacher-heroism/index.html?hpt=hp_c2"><img src="http://i2.cdn.turner.com/cnn/dam/assets/121216092629-newtown-angels-video-tease.jpg" alt="" border="0" height="68" width="120"/></a></div> </div> <a href="/2012/12/17/us/connecticut-shooting-teacher-heroism/index.html?hpt=hp_c2">Adults died protecting children</a> </div> <div class="cnn_mc2node"> <div class="cnn_mtlplnimg"> <div><a href="/video/?hpt=hp_c2#/video/us/2012/12/17/pmt-ct-sandy-hook-vicki-soto-family.cnn"><img src="http://i2.cdn.turner.com/cnn/dam/assets/121217031911-pmt-ct-sandy-hook-vicki-soto-family-00005217-video-tease.jpg" alt="" border="0" height="68" width="120"/></a></div> <div class="cnn_vidplyb38x38"><a href="/video/?hpt=hp_c2#/video/us/2012/12/17/pmt-ct-sandy-hook-vicki-soto-family.cnn"><img src="http://i.cdn.turner.com/cnn/.e/img/3.0/1px.gif" border="0"/></a></div> </div> <a href="/video/?hpt=hp_c2#/video/us/2012/12/17/pmt-ct-sandy-hook-vicki-soto-family.cnn">Teacher hid pupils before being slain</a> <span> 3:02 </span> </div> <div class="cnn_mc2node cnn_mc2lastnode"> <div class="cnn_mtlplnimg"> <div><a href="/2012/12/17/us/connecticut-shooting-principal-family/index.html?hpt=hp_c2"><img src="http://i2.cdn.turner.com/cnn/dam/assets/121214095310-40-newtown-1214-c2-only-video-tease.jpg" alt="" border="0" height="68" width="120"/></a></div> </div> <a href="/2012/12/17/us/connecticut-shooting-principal-family/index.html?hpt=hp_c2">Principal died confronting gunman</a> </div> <div class="cnn_hpclear"></div> </div> </div>
<div class="cnn_mc23x1cnntr"> <div class="cnn_mc2hdrcntr cnn_mc2numhdr1"> <div class="cnn_mc2hdr2" style="width:100%">THE WORLD MOURNS</div> <div class="cnn_divline"></div> </div> <div class="cnn_mc2nodecntr"> <div class="cnn_mc2node"> <div class="cnn_mtlplnimg"> <div><a href="http://www.cnn.com/interactive/2012/12/us/sandy-hook-victims/index.html?hpt=hp_c3"><img src="http://i2.cdn.turner.com/cnn/dam/assets/121216104026-victims-richman-pozner-hubbard-video-tease.jpg" alt="" border="0" height="68" width="120"/></a></div> </div> <a href="http://www.cnn.com/interactive/2012/12/us/sandy-hook-victims/index.html?hpt=hp_c3">Profiles of those 'taken far too soon'</a> </div> <div class="cnn_mc2node"> <div class="cnn_mtlplnimg"> <div><a href="/video/?hpt=hp_c3#/video/bestoftv/2012/12/17/point-snl-ct-shooting-tribute.cnn"><img src="http://i2.cdn.turner.com/cnn/dam/assets/121217115128-point-snl-ct-shooting-tribute-00003502-video-tease.jpg" alt="" border="0" height="68" width="120"/></a></div> <div class="cnn_vidplyb38x38"><a href="/video/?hpt=hp_c3#/video/bestoftv/2012/12/17/point-snl-ct-shooting-tribute.cnn"><img src="http://i.cdn.turner.com/cnn/.e/img/3.0/1px.gif" border="0"/></a></div> </div> <a href="/video/?hpt=hp_c3#/video/bestoftv/2012/12/17/point-snl-ct-shooting-tribute.cnn">'SNL's moving tribute to shooting victims </a> <span> :42 </span> </div> <div class="cnn_mc2node cnn_mc2lastnode"> <div class="cnn_mtlplnimg"> <div><a href="/2012/12/17/world/connecticut-shooting-world-reaction/index.html?hpt=hp_c3"><img src="http://i2.cdn.turner.com/cnn/dam/assets/121217035248-rio-crosses-video-tease.jpg" alt="" border="0" height="68" width="120"/></a></div> </div> <a href="/2012/12/17/world/connecticut-shooting-world-reaction/index.html?hpt=hp_c3">Sympathy -- and bewilderment </a> </div> <div class="cnn_hpclear"></div> <div class="cnn_mc2node"> <div class="cnn_mtlplnimg"> <div><a href="/video/?hpt=hp_c3#/video/us/2012/12/17/lah-ct-newtown-fights-back.cnn"><img src="http://i2.cdn.turner.com/cnn/dam/assets/121216031007-18-newtown-reax-1215-video-tease.jpg" alt="" border="0" height="68" width="120"/></a></div> <div class="cnn_vidplyb38x38"><a href="/video/?hpt=hp_c3#/video/us/2012/12/17/lah-ct-newtown-fights-back.cnn"><img src="http://i.cdn.turner.com/cnn/.e/img/3.0/1px.gif" border="0"/></a></div> </div> <a href="/video/?hpt=hp_c3#/video/us/2012/12/17/lah-ct-newtown-fights-back.cnn">Newtown group calls for gun law changes</a> <span> 2:16 </span> </div> <div class="cnn_mc2node"> <div class="cnn_mtlplnimg"> <div><a href="/video/?hpt=hp_c3#/video/us/2012/12/16/nr-candiotti-ct-shooting.cnn"><img src="http://i2.cdn.turner.com/cnn/dam/assets/121216025005-nr-candiotti-ct-shooting-00013230-video-tease.jpg" alt="" border="0" height="68" width="120"/></a></div> <div class="cnn_vidplyb38x38"><a href="/video/?hpt=hp_c3#/video/us/2012/12/16/nr-candiotti-ct-shooting.cnn"><img src="http://i.cdn.turner.com/cnn/.e/img/3.0/1px.gif" border="0"/></a></div> </div> <a href="/video/?hpt=hp_c3#/video/us/2012/12/16/nr-candiotti-ct-shooting.cnn">Police find 'good evidence' of motive</a> <span> 2:10 </span> </div> <div class="cnn_mc2node cnn_mc2lastnode"> <div class="cnn_mtlplnimg"> <div><a href="/video/?hpt=hp_c3#/video/us/2012/12/16/ct-shooting-keilar-pkg-gun-control.cnn"><img src="http://i2.cdn.turner.com/cnn/dam/assets/121216070915-ct-shooting-keilar-pkg-gun-control-00002025-video-tease.jpg" alt="" border="0" height="68" width="120"/></a></div> <div class="cnn_vidplyb38x38"><a href="/video/?hpt=hp_c3#/video/us/2012/12/16/ct-shooting-keilar-pkg-gun-control.cnn"><img src="http://i.cdn.turner.com/cnn/.e/img/3.0/1px.gif" border="0"/></a></div> </div> <a href="/video/?hpt=hp_c3#/video/us/2012/12/16/ct-shooting-keilar-pkg-gun-control.cnn">Obama vows to tackle gun violence</a> <span> 3:03 </span> </div> <div class="cnn_hpclear"></div> <div class="cnn_mc2node"> <div class="cnn_mtlplnimg"> <div><a href="/2012/12/16/opinion/greene-connecticut-shooting/index.html?hpt=hp_c3"><img src="http://i2.cdn.turner.com/cnn/dam/assets/121214104202-greene-newtown-video-tease.jpg" alt="" border="0" height="68" width="120"/></a></div> </div> <a href="/2012/12/16/opinion/greene-connecticut-shooting/index.html?hpt=hp_c3">Greene: Has life in U.S. gone insane?</a> </div> <div class="cnn_mc2node"> <div class="cnn_mtlplnimg"> <div><a href="/2012/12/17/opinion/kurtz-media-newtown/index.html?hpt=hp_c3"><img src="http://i2.cdn.turner.com/cnn/dam/assets/121216112544-15-newtown-reax-1216-video-tease.jpg" alt="" border="0" height="68" width="120"/></a></div> </div> <a href="/2012/12/17/opinion/kurtz-media-newtown/index.html?hpt=hp_c3">Kurtz: Seeing the media's best, worst </a> </div> <div class="cnn_mc2node cnn_mc2lastnode"> <div class="cnn_mtlplnimg"> <div><a href="/2012/12/17/health/connecticut-shooting-autism/index.html?hpt=hp_c3"><img src="http://i2.cdn.turner.com/cnn/dam/assets/121217035544-newtown-flower-december-17-video-tease.jpg" alt="" border="0" height="68" width="120"/></a></div> </div> <a href="/2012/12/17/health/connecticut-shooting-autism/index.html?hpt=hp_c3">Groups: Autism not to blame</a> </div> <div class="cnn_hpclear"></div> </div> </div>
<div class="cnn_mc23x1cnntr"> <div class="cnn_mc2hdrcntr cnn_mc2numhdr1"> <div class="cnn_mc2hdr2" style="width:100%">CNN EXCLUSIVE</div> <div class="cnn_divline"></div> </div> <div id="cnn_mc2_large1" class="cnn_mc2_large cnn_mc2_img_right"> <div class="cnn_mc2_text_left" style="height:106px"> <div class="cnn_mc2_header"><a href="/2012/12/16/us/aesha-surgery-healing/index.html?hpt=hp_c4"></a></div> <div class="cnn_mc2_headline"> <a href="/2012/12/16/us/aesha-surgery-healing/index.html?hpt=hp_c4">Aesha's face tells a new story</a> </div> <div class="cnn_mc2_blurb"> A victim of Taliban brutality, she came to the U.S. with the promise of a new face and a new life. More than two years later, Aesha is on her way to having both. </div> </div> <div class="cnn_mtlplnode_c"><div class="cnn_mtlplnimg"> <a href="/2012/12/16/us/aesha-surgery-healing/index.html?hpt=hp_c4"><img src="http://i2.cdn.turner.com/cnn/dam/assets/121214104303-aesha-gallery-01-new-wall-4-tease.jpg" alt="" border="0" height="90" width="160"/></a> </div></div> <div class="cnn_clear"></div> </div> </div>
<!--content.bins.C5 is empty-->
</div>
</div>
<div class="cnn_pad18top"></div>
<div class="cnn_clearmt1t2"></div>
</div>
<div id="cnn_maintopprofile">
<div class="cnn_shdcontent">
<script>cnnad_newTileIDGroup(['300x250_rgt','120x90_bot1','120x90_bot2','120x90_bot3','120x90_bot4','120x90_bot5','120x90_bot6','120x90_bot7','120x90_bot8','120x90_bot9']);</script>
<div>
<span class="_fwph" id="medium_rectangle">
<form id="_fw_form_medium_rectangle" style="display:none">
<input id="_fw_input_medium_rectangle" name="_fw_input_medium_rectangle" type="hidden" value="w=300&h=250&envp=g_js&sflg=-nrpl;"/>
</form>
<span class="_fwac" id="_fw_container_medium_rectangle">
<!-- ADSPACE: homepage/main/rgt.300x250 -->
<!-- CALLOUT|http://ads.cnn.com/html.ng/site=cnn&cnn_pagetype=main&cnn_position=300x250_rgt&cnn_rollup=homepage&page.allowcompete=no¶ms.styles=fs|CALLOUT -->
<div id="ad-263095" align="center" style="padding: 0; margin: 0; border: 0;"></div><script>cnnad_createAd("263095","http://ads.cnn.com/html.ng/site=cnn&cnn_pagetype=main&cnn_position=300x250_rgt&cnn_rollup=homepage&page.allowcompete=no¶ms.styles=fs","250","300");cnnad_registerSpace(263095,300,250);</script>
</span>
</span>
</div>
<div class="cnn_adtitle"><img src="http://i.cdn.turner.com/cnn/.e/img/3.0/global/misc/advertisement.gif" alt="" border="0" height="5" width="58"/></div>
</div>
<div class="cnn_hppersonal">
<div id="cnn_pmtvmodule">
<div class="cnn_hppersonalhdr">
<script type="text/html" id="nowplayingTVmod-template">
<div class="header">
<span class="sponsor-entitlement"></span>
<h4 class="mainHeader"><a href="/video/?hpt=hp_livenow">TV & Video</a></h4>
</div>
<h5 class="subtitle">ON LIVE TV NOW</h5>
<div data-bind="click:function(){document.location=$data.link()+'?hpt=hp_livenow'},attr:{title:link()+'?hpt=hp_livenow'}" class="cnn_column cnnNowPlaying">
<img data-bind="attr:{src:thumbnail()}" class="thumb cnn_column"/>
<div class="cnnTVinfoBox cnn_column">
<span data-bind="text:title()" class="showTitle"></span> <span data-bind="text:((description().length<=80)?description():description().substring(0,description().lastIndexOf(' ',77))+'...'),visible:(isTVE())" class="description"></span>
<a data-bind="attr:{href: $data.link()+'?hpt=hp_livenow'}" class="cnn_hpTVdomvmodlnks2"></a>
</div>
</div>
<h5 class="subtitle">FEATURED TV</h5>
</script>
<span
class="cnn_widget cnntvModTempWrapper"
type="nowplaying"
version="1.0.2"
channel="CNN"
video="cvptve/cvpstream1"
templates=""
data-bind="template: { name: 'nowplayingTVmod-template'}"></span>
<div id="fb-root"></div>
</div>
<div id="cnn_pmtvmodcntr" class="cnn_pmtvmoddisabled">
<div class="cnn_pmtvmodnavlft"><a href="javascript:void(0);" id="cnn_pmtvmodnlft"></a></div>
<div id="cnn_pmtvmodslidecntr">
<div class="cnn_relpostn">
<div id="cnn_pmtvmodslidecntnt">
<div class="cnn_pmtvmodslide">
<div class="cnn_relpostn">
<div class="cnn_pmtvmodslide1"><img width="214" height="122" border="0" src="http://i2.cdn.turner.com/cnn/dam/assets/121215033724-51-newtown-1214-left-tease.jpg" alt=""></div>
<div class="cnn_pmtvmodslide1b"><a href="http://news.blogs.cnn.com/2012/12/17/first-funerals-today-for-children-killed-at-connecticut-school/?hpt=hp_tvbx"><img width="214" height="122" border="0" src="http://i.cdn.turner.com/cnn/.e/img/3.0/1px.gif"></a></div>
<div class="cnn_pmtvmodslide2"></div>
<div class="cnn_pmtvmodslide3">
<div class="cnn_pmtvmodslide3a">
CNN TV live all day from Newtown
</div>
<div class="cnn_pmtvmodslide3b">Latest massacre updates</div>
</div>
</div>
</div>
<div class="cnn_pmtvmodslide">
<div class="cnn_relpostn">
<div class="cnn_pmtvmodslide1"><img width="214" height="122" border="0" src="http://i2.cdn.turner.com/cnn/dam/assets/121216033642-nancy-lanza-1-left-tease.jpg" alt=""></div>
<div class="cnn_pmtvmodslide1b"><a href="http://outfront.blogs.cnn.com/2012/12/16/friends-of-nancy-lanza-speak-out-she-was-a-generous-and-kind-person/?hpt=hp_tvbx"><img width="214" height="122" border="0" src="http://i.cdn.turner.com/cnn/.e/img/3.0/1px.gif"></a></div>
<div class="cnn_pmtvmodslide2"></div>
<div class="cnn_pmtvmodslide3">
<div class="cnn_pmtvmodslide3a">
'OutFront': Hearing from her friends
</div>
<div class="cnn_pmtvmodslide3b">Remembering Nancy Lanza</div>
</div>
</div>
</div>
<div class="cnn_pmtvmodslide">
<div class="cnn_relpostn">
<div class="cnn_pmtvmodslide1"><img width="214" height="122" border="0" src="http://i2.cdn.turner.com/cnn/dam/assets/121217041948-sot-ct-ana-m-marquez-greene-piano-00002011-left-tease.jpg" alt=""></div>
<div class="cnn_pmtvmodslide1b"><a href="http://ac360.blogs.cnn.com/2012/12/17/remembering-victim-ana-m-marquez-greene/?hpt=hp_tvbx"><img width="214" height="122" border="0" src="http://i.cdn.turner.com/cnn/.e/img/3.0/1px.gif"></a></div>
<div class="cnn_pmtvmodslide2"></div>
<div class="cnn_pmtvmodslide3">
<div class="cnn_pmtvmodslide3a">
'AC360' looks back at her life
</div>
<div class="cnn_pmtvmodslide3b">6-year-old Newtown victim</div>
</div>
</div>
</div>
<div class="cnn_pmtvmodslide">
<div class="cnn_relpostn">
<div class="cnn_pmtvmodslide1"><img width="214" height="122" border="0" src="http://i2.cdn.turner.com/cnn/dam/assets/121216081515-09-newtown-reax-1216-left-tease.jpg" alt=""></div>
<div class="cnn_pmtvmodslide1b"><a href="http://startingpoint.blogs.cnn.com/2012/12/17/psychology-professor-james-garabino-discusses-the-mind-of-a-young-shooter/?hpt=hp_tvbx"><img width="214" height="122" border="0" src="http://i.cdn.turner.com/cnn/.e/img/3.0/1px.gif"></a></div>
<div class="cnn_pmtvmodslide2"></div>
<div class="cnn_pmtvmodslide3">
<div class="cnn_pmtvmodslide3a">
A new perspective on 'Starting Point'
</div>
<div class="cnn_pmtvmodslide3b">Mind of young shooter</div>
</div>
</div>
</div>
<div class="cnn_pmtvmodslide">
<div class="cnn_relpostn">
<div class="cnn_pmtvmodslide1"><img width="214" height="122" border="0" src="http://i2.cdn.turner.com/cnn/dam/assets/121217025935-pmt-ct-shooting-00002711-left-tease.jpg" alt=""></div>
<div class="cnn_pmtvmodslide1b"><a href="http://piersmorgan.blogs.cnn.com/2012/12/16/dan-gross-of-the-brady-campaign-we-dont-want-to-live-in-a-society-where-violence-leads-to-more-violence-and-guns-leads-to-more-guns/?hpt=hp_tvbx"><img width="214" height="122" border="0" src="http://i.cdn.turner.com/cnn/.e/img/3.0/1px.gif"></a></div>
<div class="cnn_pmtvmodslide2"></div>
<div class="cnn_pmtvmodslide3">
<div class="cnn_pmtvmodslide3a">
Piers Morgan and guests weigh in
</div>
<div class="cnn_pmtvmodslide3b">Gun control debate</div>
</div>
</div>
</div>
<div class="cnn_pmtvmodslide">
<div class="cnn_relpostn">
<div class="cnn_pmtvmodslide1"><img width="214" height="122" border="0" src="http://i2.cdn.turner.com/cnn/dam/assets/121216092629-newtown-angels-left-tease.jpg" alt=""></div>
<div class="cnn_pmtvmodslide1b"><a href="http://piersmorgan.blogs.cnn.com/2012/12/16/do-you-want-to-attend-a-live-town-hall-addressing-the-tragedy-in-newtown-conn/?hpt=hp_tvbx"><img width="214" height="122" border="0" src="http://i.cdn.turner.com/cnn/.e/img/3.0/1px.gif"></a></div>
<div class="cnn_pmtvmodslide2"></div>
<div class="cnn_pmtvmodslide3">
<div class="cnn_pmtvmodslide3a">
Be part of Piers Morgan audience Wed.
</div>
<div class="cnn_pmtvmodslide3b">Town hall after tragedy</div>
</div>
</div>
</div>
<div class="cnn_pmtvmodslide">
<div class="cnn_relpostn">
<div class="cnn_pmtvmodslide1"><img width="214" height="122" border="0" src="http://i2.cdn.turner.com/cnn/dam/assets/121217041039-ac-ct-tuchman-principal-sandy-hook-00013717-left-tease.jpg" alt=""></div>
<div class="cnn_pmtvmodslide1b"><a href="http://ac360.blogs.cnn.com/2012/12/16/family-of-slain-sandy-hook-elementary-principal-speaks/?hpt=hp_tvbx"><img width="214" height="122" border="0" src="http://i.cdn.turner.com/cnn/.e/img/3.0/1px.gif"></a></div>
<div class="cnn_pmtvmodslide2"></div>
<div class="cnn_pmtvmodslide3">
<div class="cnn_pmtvmodslide3a">
'AC360' has the emotional interview
</div>
<div class="cnn_pmtvmodslide3b">Principal's family speaks</div>
</div>
</div>
</div>
<div class="cnn_pmtvmodslide">
<div class="cnn_relpostn">
<div class="cnn_pmtvmodslide1"><img width="214" height="122" border="0" src="http://i2.cdn.turner.com/cnn/dam/assets/121217031210-pmt-ct-shooting-sandy-hook-victims-00030412-left-tease.jpg" alt=""></div>
<div class="cnn_pmtvmodslide1b"><a href="http://piersmorgan.blogs.cnn.com/2012/12/16/remembering-the-sandy-hook-victims/?hpt=hp_tvbx"><img width="214" height="122" border="0" src="http://i.cdn.turner.com/cnn/.e/img/3.0/1px.gif"></a></div>
<div class="cnn_pmtvmodslide2"></div>
<div class="cnn_pmtvmodslide3">
<div class="cnn_pmtvmodslide3a">
'Piers Morgan Tonight' tribute
</div>
<div class="cnn_pmtvmodslide3b">Remembering young victims</div>
</div>
</div>
</div>
</div>
<div class="cnn_loadingicon"><img src="http://i.cdn.turner.com/cnn/.element/img/3.0/global/misc/loading.gif"></div>
</div>
</div>
<div class="cnn_pmtvmodnavrgt"><a href="javascript:void(0);" id="cnn_pmtvmodnrgt"></a></div>
</div>
<div class="cnn_tsbnav cnn_pmtvmodddown">
<form>
<select onchange="if(this.options[selectedIndex].value!=''){location.href=this.options[selectedIndex].value;}">
<option value="/Programs/?hpt=hp_livenow">Shows and Schedules
<option value="" disabled="disabled" class="disabledProgram">----------------------------------------
<option value="/CNN/Programs/?hpt=hp_livenow">Today's schedule
<option value="" disabled="disabled" class="disabledProgram">----- CNN Weekdays -----
<option value="http://outfront.blogs.cnn.com/?hpt=hp_livenow">Erin Burnett OutFront
<option value="http://ac360.blogs.cnn.com/?hpt=hp_livenow">Anderson Cooper 360
<option value="http://piersmorgan.blogs.cnn.com/?hpt=hp_livenow">Piers Morgan Tonight
<option value="http://earlystart.blogs.cnn.com/?hpt=hp_livenow">Early Start
<option value="http://startingpoint.blogs.cnn.com/?hpt=hp_livenow">Starting Point
<option value="http://newsroom.blogs.cnn.com/?hpt=hp_livenow">CNN Newsroom
<option value="http://situationroom.blogs.cnn.com/?hpt=hp_livenow">The Situation Room
<option value="" disabled="disabled" class="disabledProgram">----- CNN Weekends -----
<option value="http://sanjayguptamd.blogs.cnn.com/?hpt=hp_livenow">Sanjay Gupta MD
<option value="http://yourbottomline.blogs.cnn.com/?hpt=hp_livenow">Your Bottom Line
<option value="http://yourmoney.blogs.cnn.com/?hpt=hp_livenow">Your Money
<option value="http://sotu.blogs.cnn.com/?hpt=hp_livenow">State of the Union
<option value="http://globalpublicsquare.blogs.cnn.com/?hpt=hp_livenow">Fareed Zakaria GPS
<option value="http://reliablesources.blogs.cnn.com/?hpt=hp_livenow">Reliable Sources
<option value="http://whatsnext.blogs.cnn.com/category/the-next-list/?hpt=hp_livenow">The Next List
<option value="" disabled="disabled" class="disabledProgram">----- Other CNN -----
<option value="http://inamerica.blogs.cnn.com/?hpt=hp_livenow">In America
<option value="/SPECIALS/cnn.heroes/?hpt=hp_livenow">CNN Heroes
<option value="http://cnnpresents.blogs.cnn.com/?hpt=hp_livenow">CNN Presents
<option value="http://cnnpresents.blogs.cnn.com/?hpt=hp_livenow">Spec. Investigations Unit
<option value="/studentnews/?hpt=hp_livenow">CNN Student News
<option value="" disabled="disabled" class="disabledProgram">----- HLN -----
<option value="http://www.hlntv.com/shows/morning-express-robin-meade/?hpt=hp_livenow">Morning Express with Robin Meade
<option value="/CNN/Programs/prime.news/?hpt=hp_livenow">Prime News
<option value="http://www.hlntv.com/shows/jane-velez-mitchell/?hpt=hp_livenow">Jane Velez-Mitchell
<option value="http://www.hlntv.com/shows/nancy-grace/?hpt=hp_livenow">Nancy Grace
<option value="http://www.hlntv.com/shows/dr-drew/?hpt=hp_livenow">Dr. Drew
<option value="http://www.hlntv.com/shows/clark-howard/?hpt=hp_livenow">Clark Howard
<option value="/CNN/Programs/showbiz.tonight/?hpt=hp_livenow">Showbiz Tonight
</select>
</form>
</div>
<div class="cnn_pmtvmodlnks">
<div class="cnn_pmtvmodlnks1"><a href="http://cnnradio.cnn.com/?hpt=hp_livenow">CNN Radio</a> | <a href="http://www.hlntv.com/?hpt=hp_livenow">HLN</a> | <a href="http://www.cnn.com/CNN/Programs/?hpt=hp_livenow">Full Schedule</a></div>
<div class="cnn_clear"></div>
</div>
</div>
</div>
<script>
/* start up cnntv slider */
$j(document).ready(function() {
'use strict';
CNNHMPAGE.pmod.cnntv.init((5 * 1000));
$j('#cnn_pmtvmodule').parent().addClass('tve');
});
</script>
<div class="cnn_hppersonal">
<div class="cnn_pad12top"></div>
<div class="rrHeader rrHeaderM"><a href="http://money.cnn.com/data/markets/">Markets</a></div>
<div class="cnn_divline"></div>
<div id="pmMarkets" style="display:none;">
<div class="pmSectHead">
<a id="cnnMoney" href="http://money.cnn.com/data/markets">CNNMoney.com »</a>
</div>
<div id="pmIndecies">
<div class="pmWrapper">
<div class="marketTime">
<span>Updated </span>
<span id="indexUpdated">12:33 pm ET Dec 17</span>
</div>
<a id="myQuotesBtn" class="toggle togOff"><span>My quotes</span></a>
<a id="defIndexBtn" class="toggle togOn"><span>Indexes</span></a>
</div>
<div id="pmDefaultIndecies" class="tab pmOn">
<ul>
<li class="market-0">
<div class="marketInfo-left"> <!-- left side -->
<span class="marketName">
<a href="http://money.cnn.com/data/markets/dow/">Dow</a>
</span>
<span class="marketIndex">13,226.12</span>
</div>
<div class="marketNums-right up">
<div class="percentDiff">
<span>(<span class="plusMinus">+</span>0.69 %)</span>
</div>
<div class="numDiff">
<span><span class="plusMinus">+</span>91.11</span>
</div>
</div>
</li>
<li class="market-1">
<div class="marketInfo-left"> <!-- left side -->
<span class="marketName">
<a href="http://money.cnn.com/data/markets/nasdaq/">Nasdaq</a>
</span>
<span class="marketIndex">3,004.57</span>
</div>
<div class="marketNums-right up">
<div class="percentDiff">
<span>(<span class="plusMinus">+</span>1.12 %)</span>
</div>
<div class="numDiff">
<span><span class="plusMinus">+</span>33.23</span>
</div>
</div>
</li>
<li class="market-2">
<div class="marketInfo-left"> <!-- left side -->
<span class="marketName">
<a href="http://money.cnn.com/data/markets/sandp/">S&P</a>
</span>
<span class="marketIndex">1,428.14</span>
</div>
<div class="marketNums-right up">
<div class="percentDiff">
<span>(<span class="plusMinus">+</span>1.03 %)</span>
</div>
<div class="numDiff">
<span><span class="plusMinus">+</span>14.56</span>
</div>
</div>
</li>
</ul>
</div>
<div id="pmMyQuotes" class="tab pmOff"></div>
<form id="symbolSearch" action="" onsubmit="MainLocalObj.Markets.lookupStockSymbol(); return false">
<div id="searchLine">
<input name="symb" id="searchQuote" type="text" class="formInput" AUTOCOMPLETE="OFF" /><a id="getSymbolBtn" href="javascript: MainLocalObj.Markets.lookupStockSymbol();"><span>Get Quotes</span></a>
<div id="myContainer"></div>
</div>
</form>
<div id="moneySponsor"></div>
</div>
<div class="cnn_clear"></div>
</div>
<div id="cnn_personalloading" style="padding:15px;text-align:center;"><img src="http://i.cdn.turner.com/cnn/.element/img/3.0/global/misc/loading.gif"></div>
</div>
<div class="cnn_hppersonal">
<div class="cnn_pad12top"></div>
<div class="rrHeader rrHeaderW"><a href="http://weather.cnn.com/weather/forecast.jsp">Weather</a></div>
<div class="cnn_divline"></div>
<div id="pmWeather">
<div id="cnnGetLocalBox" style="display:none;">
<form onsubmit="MainLocalObj.Weather.checkInput('weather',this.inputField.value);return false;" id="pmWeatherLocation" name="localAllLookupForm" action="">
<fieldset>
<div class="pmWrapper">
<label for="weatherLoc">Edit location</label>
<input type="text" id="weatherLoc" class="pmWeatherHollow" name="inputField" value="Enter a U.S. Zip or Intl city" onfocus="MainLocalObj.Weather.inputFocus(this);" onblur="MainLocalObj.Weather.inputBlur(this);"/><a id="weatherLocBtn" href="javascript:MainLocalObj.Weather.checkInput('weather',document.localAllLookupForm.inputField.value);"><span>Go</span></a>
</div>
<div id="pmLocResultsContainer"></div>
</fieldset>
</form>
</div>
<div class="pmWrapper" id="pmWeatherTab"></div>
</div>
</div>
<div class="cnn_pad10top"></div>
</div>
<div class="cnn_clear"></div>
<div class="cnn_shdcafooter"></div>
</div>
<div class="cnn_pad2top cnn_shdspc"></div>
<div class="cnn_contentarea cnn_shdsectbin">
<div class="cnn_shdcaheader"></div>
<div class="cnn_sectbin1">
<div class="cnn_sectbincntnt_full">
<div class="cnn_sectbincntnt2">
<h4><a href='http://www.cnn.com/US?hpt=hp_bn1'>U.S.</a></h4>
<div class="cnn_clear"></div>
<div class="cnn_divline"></div>
<ul class="cnn_bulletbin">
<ul class="cnn_bulletbin">
<li> <a href=/2012/12/15/us/iyw-help-for-victims-of-sandy-hook-shooting/index.html?hpt=hp_bn1 target="_self">How to help after shooting</a>
</li>
<li> <a href=http://cnnradio.cnn.com/2012/12/17/newtown-wonders-how-to-heal/?hpt=hp_bn1 target="_self">Newtown wonders how to heal</a>
</li>
<li> <a href=/2012/12/16/us/connecticut-school-shooting-narrative/index.html?hpt=hp_bn1 target="_self">Minutes of carnage, days of grief</a>
</li>
<li> <a href=/2012/12/16/us/aesha-surgery-healing/index.html?hpt=hp_bn1 target="_self">Aesha's face tells a new story</a>
</li>
<li> <a href=/2012/12/16/us/benghazi-report/index.html?hpt=hp_bn1 target="_self">State Dept. to get Benghazi report</a>
</li>
<li> <a href=/2012/12/15/us/connecticut-school-safety/index.html?hpt=hp_bn1 target="_self">What really makes schools safer? </a>
</li>
<li> <a href=/2012/12/16/showbiz/casablanca-piano-auction/index.html?hpt=hp_bn1 target="_self">'Casablanca' piano to play again</a>
</li>
</ul>
</ul>
</div>
<div class="cnn_mtpmore"><a href="http://www.cnn.com/US?hpt=hp_bn1" class="cnn_mtpmorebtn"><img src="http://i.cdn.turner.com/cnn/.e/img/3.0/1px.gif" alt="More" border="0"/></a></div>
</div>
<div class="cnn_adspc155x31">
</div>
</div>
<div class="cnn_sectbin2">
<div class="cnn_sectbincntnt_full">
<div class="cnn_sectbincntnt2">
<h4><a href='http://www.cnn.com/world/?hpt=hp_bn2'>World</a></h4>
<div class="cnn_clear"></div>
<div class="cnn_divline"></div>
<ul class="cnn_bulletbin">
<ul class="cnn_bulletbin">
<li> <a href=/2012/12/16/world/asia/philippines-typhoon/index.html?hpt=hp_bn2 target="_self">Death toll from typhoon tops 1,000</a>
</li>
<li> <a href=/2012/12/17/world/asia/afghanistan-girls-landmine/index.html?hpt=hp_bn2 target="_self">Mine kills 10 girls collecting firewood</a>
</li>
<li> <a href=/2012/12/16/world/asia/north-korea-leader/index.html?hpt=hp_bn2 target="_self">Kim Jong Un: A year as 'Dear Leader'</a>
</li>
<li> <a href=/2012/12/16/world/asia/japan-election/index.html?hpt=hp_bn2 target="_self">Japan's PM concedes defeat</a>
</li>
<li> <a href=/video/?hpt=hp_bn2#/video/world/2012/12/17/pkg-damon-syria-female-war-videographer.cnn target="_self">War photographer breaks taboos </a>
<a href=/video/?hpt=hp_bn2#/video/world/2012/12/17/pkg-damon-syria-female-war-videographer.cnn target="_self"><img class="cnnVideoIcon" width="16" height="10" border="0" alt="" src="http://i.cdn.turner.com/cnn/.e/img/3.0/global/icons/video_icon.gif"/></a>
</li>
<li> <a href=http://cnnphotos.blogs.cnn.com/2012/12/14/malala-and-the-women-of-pakistan/?hpt=hp_bn2 target="_self">Photos: Malala and Pakistan's women</a>
</li>
<li> <a href=/2012/09/29/world/gallery/people-we-lost/index.html?hpt=hp_bn2 target="_self">Photos: Notable deaths of 2012</a>
</li>
<li> <a href=/2012/12/04/world/gallery/year-in-pictures/index.html?hpt=hp_bn2 target="_self">2012: The year in pictures</a>
</li>
</ul>
</ul>
</div>
<div class="cnn_mtpmore"><a href="http://www.cnn.com/world/?hpt=hp_bn2" class="cnn_mtpmorebtn"><img src="http://i.cdn.turner.com/cnn/.e/img/3.0/1px.gif" alt="More" border="0"/></a></div>
</div>
<div class="cnn_adspc155x31">
</div>
</div>
<div class="cnn_sectbin3">
<div class="cnn_sectbincntnt_full">
<div class="cnn_sectbincntnt2">
<h4><a href='http://www.cnn.com/politics?hpt=hp_bn3'>Politics</a></h4>
<div class="cnn_clear"></div>
<div class="cnn_divline"></div>
<ul class="cnn_bulletbin">
<ul class="cnn_bulletbin">
<li> <a href=http://politicalticker.blogs.cnn.com/2012/12/17/breaking-haley-to-name-tim-scott-to-senate-seat/?hpt=hp_bn3 target="_self">Haley to name Scott to Senate seat</a>
</li>
<li> <a href=/2012/12/17/politics/fiscal-cliff/index.html?hpt=hp_bn3 target="_self">GOP offer heats up fiscal cliff talks</a>
</li>
<li> <a href=http://politicalticker.blogs.cnn.com/2012/12/17/electoral-college-makes-it-official/?hpt=hp_bn3 target="_self">Electoral college selects Obama</a>
</li>
<li> <a href=http://politicalticker.blogs.cnn.com/2012/12/16/breaking-we-have-wept-with-you-obama-says-in-newtown-speech/?hpt=hp_bn3 target="_self">Obama: 'Newtown, you are not alone'</a>
</li>
<li> <a href=/video/?hpt=hp_bn3#/video/us/2012/12/17/sot-ct-obama-newtown-vigil-2.cnn target="_self">'These tragedies must end'</a>
<a href=/video/?hpt=hp_bn3#/video/us/2012/12/17/sot-ct-obama-newtown-vigil-2.cnn target="_self"><img class="cnnVideoIcon" width="16" height="10" border="0" alt="" src="http://i.cdn.turner.com/cnn/.e/img/3.0/global/icons/video_icon.gif"/></a>
</li>
<li> <a href=/2012/12/15/politics/obama-secretary-of-state/index.html?hpt=hp_bn3 target="_self">Kerry to be nominated for sec. of state</a>
</li>
<li> <a href=/2012/12/14/politics/obama-assault-weapons/index.html?hpt=hp_bn3 target="_self">Obama may reinstate assault gun ban</a>
</li>
<li> <a href=http://politicalticker.blogs.cnn.com/2012/12/15/hillary-clinton-faints-suffers-concussion/?hpt=hp_bn3 target="_self">Sec. Clinton recovering from concussion </a>
</li>
</ul>
</ul>
</div>
<div class="cnn_mtpmore"><a href="http://www.cnn.com/politics?hpt=hp_bn3" class="cnn_mtpmorebtn"><img src="http://i.cdn.turner.com/cnn/.e/img/3.0/1px.gif" alt="More" border="0"/></a></div>
</div>
<div class="cnn_adspc155x31">
</div>
</div>
<div class="cnn_sectbin4">
<div class="cnn_sectbincntnt_full">
<div class="cnn_sectbincntnt2">
<h4><a href='http://www.cnn.com/video?hpt=hp_bn4'>Video</a></h4>
<div class="cnn_clear"></div>
<div class="cnn_divline"></div>
<ul class="cnn_bulletbin">
<ul class="cnn_bulletbin">
<li>
<a href="/video/#/video/health/2012/12/17/sgmd-gupta-helping-children-to-cope.cnn?hpt=hp_bn4">Helping children to cope</a>
<a href="/video/#/video/health/2012/12/17/sgmd-gupta-helping-children-to-cope.cnn?hpt=hp_bn4">
<img class="cnnVideoIcon" width="16" height="10" border="0" alt="Video" src="http://i.cdn.turner.com/cnn/.e/img/3.0/global/icons/video_icon.gif">
</a>
</li>
<li>
<a href="/video/#/video/health/2012/12/17/sgmd-gupta-understanding-stages-of-grief.cnn?hpt=hp_bn4">Understanding stages of grief</a>
<a href="/video/#/video/health/2012/12/17/sgmd-gupta-understanding-stages-of-grief.cnn?hpt=hp_bn4">
<img class="cnnVideoIcon" width="16" height="10" border="0" alt="Video" src="http://i.cdn.turner.com/cnn/.e/img/3.0/global/icons/video_icon.gif">
</a>
</li>
<li>
<a href="/video/#/video/health/2012/12/17/sgmd-point-gupta-talking-to-kids-about-tragedy.cnn?hpt=hp_bn4">Should you discuss shootings with kids?</a>
<a href="/video/#/video/health/2012/12/17/sgmd-point-gupta-talking-to-kids-about-tragedy.cnn?hpt=hp_bn4">
<img class="cnnVideoIcon" width="16" height="10" border="0" alt="Video" src="http://i.cdn.turner.com/cnn/.e/img/3.0/global/icons/video_icon.gif">
</a>
</li>
<li>
<a href="/video/#/video/us/2012/12/17/sot-ct-obama-newtown-vigil-entire.cnn?hpt=hp_bn4">Obama: 'God has called them all home'</a>
<a href="/video/#/video/us/2012/12/17/sot-ct-obama-newtown-vigil-entire.cnn?hpt=hp_bn4">
<img class="cnnVideoIcon" width="16" height="10" border="0" alt="Video" src="http://i.cdn.turner.com/cnn/.e/img/3.0/global/icons/video_icon.gif">
</a>
</li>
<li>
<a href="/video/#/video/bestoftv/2012/12/17/talat-mayan-apocalypse-preps-take-a-look-at-this.cnn?hpt=hp_bn4">Take a Look at This!</a>
<a href="/video/#/video/bestoftv/2012/12/17/talat-mayan-apocalypse-preps-take-a-look-at-this.cnn?hpt=hp_bn4">
<img class="cnnVideoIcon" width="16" height="10" border="0" alt="Video" src="http://i.cdn.turner.com/cnn/.e/img/3.0/global/icons/video_icon.gif">
</a>
</li>
<li>
<a href="/video/#/video/world/2012/12/17/pkg-mabuse-safrica-anc-crisis-confidence.cnn?hpt=hp_bn4">South African president under scrutiny</a>
<a href="/video/#/video/world/2012/12/17/pkg-mabuse-safrica-anc-crisis-confidence.cnn?hpt=hp_bn4">
<img class="cnnVideoIcon" width="16" height="10" border="0" alt="Video" src="http://i.cdn.turner.com/cnn/.e/img/3.0/global/icons/video_icon.gif">
</a>
</li>
<li>
<a href="/video/#/video/bestoftv/2012/12/17/pmt-ct-shooting-franki-bruni.cnn?hpt=hp_bn4">Frank Bruni on gun control</a>
<a href="/video/#/video/bestoftv/2012/12/17/pmt-ct-shooting-franki-bruni.cnn?hpt=hp_bn4">
<img class="cnnVideoIcon" width="16" height="10" border="0" alt="Video" src="http://i.cdn.turner.com/cnn/.e/img/3.0/global/icons/video_icon.gif">
</a>
</li>
</ul>
</ul>
</div>
<div class="cnn_mtpmore"><a href="http://www.cnn.com/video?hpt=hp_bn4" class="cnn_mtpmorebtn"><img src="http://i.cdn.turner.com/cnn/.e/img/3.0/1px.gif" alt="More" border="0"/></a></div>
</div>
<div class="cnn_adspc155x31">
</div>
</div>
<div class="cnn_clear"></div>
<div class="cnn_shdcafooter"></div>
<div class="cnn_pad2top cnn_shdspc"></div>
<div class="cnn_shdcaheader"></div>
<div class="cnn_sectbin1">
<div class="cnn_sectbincntnt_full">
<div class="cnn_sectbincntnt2">
<h4><a href='http://www.cnn.com/tech?hpt=hp_bn5'>Tech</a></h4>
<div class="cnn_clear"></div>
<div class="cnn_divline"></div>
<ul class="cnn_bulletbin">
<ul class="cnn_bulletbin">
<li> <a href=/2012/12/12/tech/mobile/online-shopping-security/index.html?hpt=hp_bn5 target="_self">7 tips for safer online shopping</a>
</li>
<li> <a href=/2012/12/12/tech/social-media/facebook-privacy-changes/index.html?hpt=hp_bn5 target="_self">Facebook to overhaul privacy controls</a>
</li>
<li> <a href=/2012/11/20/tech/gaming-gadgets/holiday-gadget-guide/index.html?hpt=hp_bn5 target="_self">Great gadgets for holiday giving</a>
</li>
<li> <a href=/2012/12/10/tech/social-media/twitter-adds-filters/index.html?hpt=hp_bn5 target="_self">Twitter adds its own photo filters</a>
</li>
<li> <a href=/2012/12/10/tech/social-media/facebook-policy-vote/index.html?hpt=hp_bn5 target="_self">Vote closes on Facebook changes</a>
</li>
<li> <a href=/2012/12/10/tech/social-media/twitter-instagram-photos/index.html?hpt=hp_bn5 target="_self">Why Instagram pulled Twitter photos</a>
</li>
<li> <a href=/2012/12/06/tech/mobile/edible-iphone-case/index.html?hpt=hp_bn5 target="_self">An iPhone case you can eat</a>
</li>
</ul>
</ul>
</div>
<div class="cnn_mtpmore"><a href="http://www.cnn.com/tech?hpt=hp_bn5" class="cnn_mtpmorebtn"><img src="http://i.cdn.turner.com/cnn/.e/img/3.0/1px.gif" alt="More" border="0"/></a></div>
</div>
<div class="cnn_adspc155x31">
</div>
</div>
<div class="cnn_sectbin2">
<div class="cnn_sectbincntnt_full">
<div class="cnn_sectbincntnt2">
<h4><a href='http://money.cnn.com?hpt=hp_bn6'>Business</a></h4>
<div class="cnn_clear"></div>
<div class="cnn_divline"></div>
<ul class="cnn_bulletbin">
<ul class="cnn_bulletbin">
<li>
<a href="http://money.cnn.com/2012/12/17/technology/html5/index.html?source=cnn_bin">HTML5 is finally done </a>
</li>
<li>
<a href="http://money.cnn.com/2012/12/17/pf/credit-card-refunds/index.html?source=cnn_bin">Credit card refunds on the way</a>
</li>
<li>
<a href="http://money.cnn.com/gallery/technology/innovation/2012/12/17/ibm-5-in-5-computers-senses/index.html?source=cnn_bin">By 2018, computers will taste & smell</a>
</li>
<li>
<a href="http://money.cnn.com/2012/12/17/investing/stocks-markets/index.html?source=cnn_bin">Stocks tiptoe higher </a>
</li>
<li>
<a href="http://money.cnn.com/2012/12/14/technology/mobile/walmart-apple-iphone-ipad-sale/index.html?source=cnn_bin">Wal-Mart slashes iPhone prices</a>
</li>
<li>
<a href="http://money.cnn.com/gallery/autos/2012/12/17/barrett-jackson-rare-car-auction/index.html?source=cnn_bin">Ultra-rare cars going up for auction</a>
</li>
<li>
<a href="http://money.cnn.com/video/pf/2012/12/14/n-exotic-gift-ideas.cnnmoney/index.html?source=cnn_bin">Exotic gift idea: $50,000 jaguar rug</a>
<a href="http://money.cnn.com/video/pf/2012/12/14/n-exotic-gift-ideas.cnnmoney/index.html?source=cnn_bin">
<img src="http://i.cdn.turner.com/cnn/.element/img/3.0/global/icons/video_icon.gif" alt="Video" border="0" width="16" height="10" class="cnn_vidicon">
</a>
</li>
</ul>
</ul>
</div>
<div class="cnn_mtpmore"><a href="http://money.cnn.com?hpt=hp_bn6" class="cnn_mtpmorebtn"><img src="http://i.cdn.turner.com/cnn/.e/img/3.0/1px.gif" alt="More" border="0"/></a></div>
</div>
<div class="cnn_adspc155x31">
</div>
</div>
<div class="cnn_sectbin3">
<div class="cnn_sectbincntnt">
<div class="cnn_sectbincntnt2">
<h4><a href='http://www.cnn.com/opinion?hpt=hp_bn7'>Opinion</a></h4>
<div class="cnn_clear"></div>
<div class="cnn_divline"></div>
<ul class="cnn_bulletbin">
<ul class="cnn_bulletbin">
<li> <a href=/2012/12/17/opinion/newman-school-shooters/index.html?hpt=hp_bn7 target="_self">In school shootings, warning signs</a>
</li>
<li> <a href=/2012/12/17/opinion/gergen-gun-culture/index.html?hpt=hp_bn7 target="_self">Honor the victims -- with action</a>
</li>
<li> <a href=/2012/12/17/opinion/kurtz-media-newtown/index.html?hpt=hp_bn7 target="_self">Seeing media's best, worst</a>
</li>
<li> <a href=/2012/12/16/opinion/cornell-gun-control/index.html?hpt=hp_bn7 target="_self">Put reason back in gun debate </a>
</li>
<li> <a href=/2012/12/16/opinion/greene-connecticut-shooting/index.html?hpt=hp_bn7 target="_self">Has life in America gone insane?</a>
</li>
<li> <a href=/2012/12/15/opinion/granderson-children-safe/index.html?hpt=hp_bn7 target="_self">Parents' promise: I will keep you safe</a>
</li>
<li> <a href=/2012/12/14/opinion/zuckerman-connecticut-shootings/index.html?hpt=hp_bn7 target="_self">Mourn...and take action on guns</a>
</li>
</ul>
</ul>
</div>
<div class="cnn_mtpmore"><a href="http://www.cnn.com/opinion?hpt=hp_bn7" class="cnn_mtpmorebtn"><img src="http://i.cdn.turner.com/cnn/.e/img/3.0/1px.gif" alt="More" border="0"/></a></div>
</div>
<div class="cnn_adspc155x31">
</div>
</div>
<div class="cnn_sectbin4">
<div class="cnn_sectbincntnt_full">
<div class="cnn_sectbincntnt2">
<h4>Popular on Facebook</h4>
<div class="cnn_clear"></div>
<div class="cnn_divline"></div>
<ul class="cnn_bulletbin">
<!-- element not processed, not of type title, bulletbins, or article -->
<!-- adTag should not be processed here -->
<!-- subtype found: webtag -->
</ul>
<iframe src="//www.facebook.com/plugins/activity.php?site=www.cnn.com&action=like&width=210&height=190&header=false&colorscheme=light&linktarget=_blank&border_color=white&font&recommendations=true" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:210px; height:190px;" allowTransparency="true"></iframe>
</div>
</div>
<div class="cnn_adspc155x31">
</div>
</div>
<div class="cnn_clear"></div>
<div class="cnn_shdcafooter"></div>
<div class="cnn_pad2top cnn_shdspc"></div>
<div class="cnn_shdcaheader"></div>
<div class="cnn_sectbin1">
<div class="cnn_sectbincntnt">
<div class="cnn_sectbincntnt2">
<h4><a href='http://www.cnn.com/showbiz?hpt=hp_bn9'>Entertainment</a></h4>
<div class="cnn_clear"></div>
<div class="cnn_divline"></div>
<ul class="cnn_bulletbin">
<ul class="cnn_bulletbin">
<li> <a href=/2012/12/14/showbiz/movies/hobbit-midnight-showings-box-office-ew/index.html?hpt=hp_bn9 target="_self"> 'Hobbit' earns $13 million </a>
</li>
<li> <a href=http://marquee.blogs.cnn.com/2012/12/14/sean-penn-no-shame-in-saying-i-want-love/?hpt=hp_bn9 target="_self">Sean Penn wants love</a>
</li>
<li> <a href=/video/?hpt=hp_bn9#/video/showbiz/2012/12/13/drew-bts-michael-lohan.hln target="_self">Dad: 'Lindsay needs rehab'</a>
<a href=/video/?hpt=hp_bn9#/video/showbiz/2012/12/13/drew-bts-michael-lohan.hln target="_self"><img class="cnnVideoIcon" width="16" height="10" border="0" alt="" src="http://i.cdn.turner.com/cnn/.e/img/3.0/global/icons/video_icon.gif"/></a>
</li>
<li> <a href=http://marquee.blogs.cnn.com/2012/12/14/mag-katie-holmes-has-best-revenge-body-of-the-year/?hpt=hp_bn9 target="_self">Mag: Holmes has best 'revenge body'</a>
</li>
<li> <a href=http://marquee.blogs.cnn.com/2012/12/13/brooke-burke-charvet-on-the-rebound-after-surgery/?hpt=hp_bn9 target="_self">'DWTS' host cancer free</a>
</li>
<li> <a href=/2012/12/14/showbiz/x-factor/index.html?hpt=hp_bn9 target="_self">Reid leaving 'The X Factor'</a>
</li>
<li> <a href=/2012/12/14/showbiz/celebrity-news-gossip/streisand-brando-piers-morgan/index.html?hpt=hp_bn9 target="_self">Streisand's road trip with Brando</a>
</li>
<li> <a href=/2012/12/13/showbiz/movies/the-hobbit-review-charity/index.html?hpt=hp_bn9 target="_self">Review: 'Hobbit' sluggish</a>
</li>
</ul>
</ul>
</div>
<div class="cnn_mtpmore"><a href="http://www.cnn.com/showbiz?hpt=hp_bn9" class="cnn_mtpmorebtn"><img src="http://i.cdn.turner.com/cnn/.e/img/3.0/1px.gif" alt="More" border="0"/></a></div>
</div>
<div class="cnn_adspc155x31">
</div>
</div>
<div class="cnn_sectbin2">
<div class="cnn_sectbincntnt_full">
<div class="cnn_sectbincntnt2">
<h4><a href='http://www.cnn.com/TRAVEL/?hpt=hp_bn10'>Travel</a></h4>
<div class="cnn_clear"></div>
<div class="cnn_divline"></div>
<ul class="cnn_bulletbin">
<ul class="cnn_bulletbin">
<li> <a href=/2012/12/17/travel/eight-truly-romantic-cities/index.html?hpt=hp_bn10 target="_self">A modern take: 8 truly romantic cities</a>
</li>
<li> <a href=/2012/12/14/travel/samantha-brown-q-and-a/index.html?hpt=hp_bn10 target="_self">Travel guru Samantha Brown is 'nesting'</a>
</li>
<li> <a href=/2012/12/13/travel/one-day-vacations/index.html?hpt=hp_bn10 target="_self">There and back again -- in one day</a>
</li>
<li> <a href=/2012/12/13/travel/new-year-celebrations/index.html?hpt=hp_bn10 target="_self">10 dazzling spots to ring in 2013</a>
</li>
<li> <a href=/2012/12/12/travel/ski-hotels-united-states/index.html?hpt=hp_bn10 target="_self">7 swanky ski hotels on U.S. slopes</a>
</li>
<li> <a href=/2012/12/11/travel/celebrates-top-10-christmas-destinations/index.html?hpt=hp_bn10 target="_self">The world's most Christmassy spots</a>
</li>
<li> <a href=/2012/11/01/travel/eat-like-a-local/index.html?hpt=hp_bn10 target="_self">Eat Like a Local: Share your picks</a>
</li>
</ul>
</ul>
</div>
<div class="cnn_mtpmore"><a href="http://www.cnn.com/TRAVEL/?hpt=hp_bn10" class="cnn_mtpmorebtn"><img src="http://i.cdn.turner.com/cnn/.e/img/3.0/1px.gif" alt="More" border="0"/></a></div>
</div>
<div class="cnn_adspc155x31">
</div>
</div>
<div class="cnn_sectbin3">
<div class="cnn_sectbincntnt_full">
<div class="cnn_sectbincntnt2">
<h4><a href='http://www.cnn.com/LIVING/?hpt=hp_bn11'>Living</a></h4>
<div class="cnn_clear"></div>
<div class="cnn_divline"></div>
<ul class="cnn_bulletbin">
<ul class="cnn_bulletbin">
<li> <a href=/2012/12/14/living/blended-christmas-hanukkah-holiday/index.html?hpt=hp_bn11 target="_self">Celebrating Chrismukkah: Shalom stockings and Hanukkah bushes</a>
</li>
<li> <a href=/2012/12/13/living/adoption-internet/index.html?hpt=hp_bn11 target="_self">Internet unlocks 'secret' adoptions</a>
</li>
<li> <a href=/2012/12/14/living/new-york-sandy-benefits/index.html?hpt=hp_bn11 target="_self">Sandy on the guest list at holiday fetes</a>
</li>
<li> <a href=/2012/12/12/living/oprah-no-regrets-office-party/index.html?hpt=hp_bn11 target="_self">The no-regrets plan for your office party</a>
</li>
<li> <a href=http://eatocracy.cnn.com/2012/12/13/gifts-for-food-lovers/?hpt=ea_mid&hpt=hp_bn11 target="_self">A food lover's ultimate gift guide</a>
</li>
<li> <a href=/2012/12/11/living/boomers-care-for-parents/index.html?hpt=hp_bn11 target="_self">Aging parents reroute boomers' lives</a>
</li>
<li> <a href=/2012/12/10/living/made-in-usa-shopping/index.html?hpt=hp_bn11 target="_self">Holiday shopping made in the USA</a>
</li>
<li> <a href=http://eatocracy.cnn.com/2012/12/06/what-should-a-local-farm-and-farmer-look-like/?hpt=hp_bn11 target="_self">What does 'local' food actually mean?</a>
</li>
</ul>
</ul>
</div>
<div class="cnn_mtpmore"><a href="http://www.cnn.com/LIVING/?hpt=hp_bn11" class="cnn_mtpmorebtn"><img src="http://i.cdn.turner.com/cnn/.e/img/3.0/1px.gif" alt="More" border="0"/></a></div>
</div>
<div class="cnn_adspc155x31">
</div>
</div>
<div class="cnn_sectbin4 cnn_adbygbin">
<!-- ADSPACE: homepage/main/adlinks.230x250 -->
<!-- CALLOUT|http://ads.cnn.com/html.ng/site=cnn&cnn_pagetype=main&cnn_position=230x250_adlinks&cnn_rollup=homepage&page.allowcompete=no¶ms.styles=fs|CALLOUT -->
<div id="ad-825207" align="center" style="padding: 0; margin: 0; border: 0;"></div><script>cnnad_createAd("825207","http://ads.cnn.com/html.ng/site=cnn&cnn_pagetype=main&cnn_position=230x250_adlinks&cnn_rollup=homepage&page.allowcompete=no¶ms.styles=fs","250","230");cnnad_registerSpace(825207,230,250);</script>
</div>
<div class="cnn_clear"></div>
<div class="cnn_shdcafooter"></div>
<div class="cnn_pad2top cnn_shdspc"></div>
<div class="cnn_shdcaheader"></div>
<div class="cnn_sectbin1">
<div class="cnn_sectbincntnt_full">
<div class="cnn_sectbincntnt2">
<h4><a href='/HEALTH/index.html?hpt=hp_bn12'>Health</a></h4>
<div class="cnn_clear"></div>
<div class="cnn_divline"></div>
<ul class="cnn_bulletbin">
<ul class="cnn_bulletbin">
<li> <a href=/video/?hpt=hp_bn12#/video/bestoftv/2012/12/12/nr-brooke-amnesia-victim.cnn target="_self">Amnesia victim feels like a ghost</a>
<a href=/video/?hpt=hp_bn12#/video/bestoftv/2012/12/12/nr-brooke-amnesia-victim.cnn target="_self"><img class="cnnVideoIcon" width="16" height="10" border="0" alt="" src="http://i.cdn.turner.com/cnn/.e/img/3.0/global/icons/video_icon.gif"/></a>
</li>
<li> <a href=/2012/12/14/health/kentucky-overdoses/index.html?hpt=hp_bn12 target="_self">Orphaned by prescription drugs</a>
</li>
<li> <a href=/2012/12/13/health/global-burden-report/index.html?hpt=hp_bn12 target="_self">Obesity tops global health crisis list</a>
</li>
<li> <a href=/2012/12/13/health/nurse-uk-suicide/index.html?hpt=hp_bn12 target="_self">Suicide causes not straightforward</a>
</li>
<li> <a href=/2012/12/13/health/kerner-inlaws/index.html?hpt=hp_bn12 target="_self">In-laws can affect your marriage</a>
</li>
<li> <a href=/video/?hpt=hp_bn12#/video/bestoftv/2012/12/10/exp-cohen-and-cancer-treatment.cnn target="_self">HIV as cancer treatment</a>
<a href=/video/?hpt=hp_bn12#/video/bestoftv/2012/12/10/exp-cohen-and-cancer-treatment.cnn target="_self"><img class="cnnVideoIcon" width="16" height="10" border="0" alt="" src="http://i.cdn.turner.com/cnn/.e/img/3.0/global/icons/video_icon.gif"/></a>
</li>
<li> <a href=http://thechart.blogs.cnn.com/2012/12/12/from-58-pounds-to-thriving-one-womans-story/?hpt=hp_bn12 target="_self">From 58 pounds to thriving</a>
</li>
<li> <a href=/2012/12/12/health/common-holiday-injuries/index.html?hpt=hp_bn12 target="_self">Ouch! Holidays can be hazardous</a>
</li>
</ul>
</ul>
</div>
<div class="cnn_mtpmore"><a href="/HEALTH/index.html?hpt=hp_bn12" class="cnn_mtpmorebtn"><img src="http://i.cdn.turner.com/cnn/.e/img/3.0/1px.gif" alt="More" border="0"/></a></div>
</div>
<div class="cnn_adspc155x31">
</div>
</div>
<div class="cnn_sectbin2">
<div class="cnn_sectbincntnt">
<div class="cnn_sectbincntnt2">
<h4><a href='http://www.cnn.com/SPECIALS/world/photography/index.html?hpt=hp_bn13'>Best photos</a></h4>
<div class="cnn_clear"></div>
<div class="cnn_divline"></div>
<ul class="cnn_bulletbin">
<li> <a href=/2012/12/06/worldsport/gallery/nfl-week-14/index.html?hpt=hp_bn13 target="_self">NFL Week 14: Striking images</a>
</li>
<li> <a href=/2012/09/29/world/gallery/people-we-lost/index.html?hpt=hp_bn13 target="_self">Notable people we've lost in 2012</a>
</li>
<li> <a href=http://cnnphotos.blogs.cnn.com/2012/12/08/horse-racing-in-kolkata/?hpt=hp_bn13 target="_self">Horse racing in Kolkata</a>
</li>
<li> <a href=http://cnnphotos.blogs.cnn.com/2012/12/03/photographing-to-get-to-know-my-parents/?hpt=hp_bn13 target="_self">Getting to know his parents</a>
</li>
<li> <a href=http://cnnphotos.blogs.cnn.com/2012/12/07/heres-looking-at-you-chimp/?hpt=hp_bn13 target="_self">Here's looking at you, chimp</a>
</li>
<li> <a href=/2012/12/02/world/gallery/santa-sightings/index.html?hpt=hp_bn13 target="_self">Santa sightings around the world</a>
</li>
<li> <a href=/2012/11/29/worldsport/gallery/2012-sports-moments/index.html?hpt=hp_bn13 target="_self">Amazing sports moments you missed</a>
</li>
</ul>
</div>
<div class="cnn_mtpmore"><a href="http://www.cnn.com/SPECIALS/world/photography/index.html?hpt=hp_bn13" class="cnn_mtpmorebtn"><img src="http://i.cdn.turner.com/cnn/.e/img/3.0/1px.gif" alt="More" border="0"/></a></div>
</div>
<div class="cnn_adspc155x31">
</div>
</div>
<div class="cnn_sectbin3">
<div class="cnn_sectbincntnt">
<div class="cnn_sectbincntnt2">
<h4><a href='http://sportsillustrated.cnn.com/?xid=cnnbin&hpt=hp_bn14'>Sports</a></h4>
<div class="cnn_clear"></div>
<div class="cnn_divline"></div>
<ul class="cnn_bulletbin">
<ul class="cnn_bulletbin">
<li><a href="http://nfl.si.com/2012/12/17/colin-kaepernick-helps-49ers-withstand-frantic-patriots-rally-on-sunday-night/?xid=cnnbin">49ers withstand Patriots' stunning rally</a></li>
<li><a href="http://mlb.si.com/2012/12/16/r-a-dickey-trade-blue-jays-mets/?xid=cnnbin">Dickey trade would be great for Mets</a></li>
<li><a href="http://nfl.si.com/2012/12/16/nfl-playoff-scenarios-shaken-up-in-week-15/?xid=cnnbin">NFL playoff picture coming into focus</a></li>
<li><a href="http://sportsillustrated.cnn.com/college-football/news/20121214/bowl-game-pickoff/?xid=cnnbin">Predicting winners of all 35 bowl games</a></li>
<li><a href="http://sportsillustrated.cnn.com/nfl/news/20121216/broncos-ravens-joe-flacco/?xid=cnnbin">Ravens' season quickly unraveling</a></li>
<li><a href="http://mlb.si.com/2012/12/15/jaws-and-the-2013-hall-of-fame-ballot-bernie-williams/?xid=cnnbin">Why Bernie Williams isn't Hall worthy</a></li>
<li><a href="http://sportsillustrated.cnn.com/multimedia/photo_gallery/1211/1211/nhl-lockout-voices/content.1.html?xid=cnnbin">Photos: Voices of the NHL lockout</a></li>
</ul>
</ul>
</div>
<div class="cnn_mtpmore"><a href="http://sportsillustrated.cnn.com/?xid=cnnbin&hpt=hp_bn14" class="cnn_mtpmorebtn"><img src="http://i.cdn.turner.com/cnn/.e/img/3.0/1px.gif" alt="More" border="0"/></a></div>
</div>
<div class="cnn_adspc155x31">
</div>
</div>
<div class="cnn_sectbin4 cnn_quickvotebin cnn_zitemodulecontnr">
<div class="cnn_sectbincntnt cnn_zitemodule"></div>
</div>
<div class="cnn_clear"></div>
<div class="cnn_shdcafooter"></div>
<div class="cnn_pad2top cnn_shdspc"></div>
<div class="cnn_shdcaheader"></div>
<div class="cnn_sectbin1">
<div class="cnn_sectbincntnt">
<div class="cnn_sectbincntnt2">
<h4><a href='http://www.hlntv.com/?hpt=hp_bn15'>HLNtv.com</a></h4>
<div class="cnn_clear"></div>
<div class="cnn_divline"></div>
<ul class="cnn_bulletbin">
<ul class="cnn_bulletbin">
<li>
<a href="http://www.hlntv.com/slideshow/2012/12/15/sandy-hook-newtown-victims-complete-list-memoriam?hpt=hp_bn15">In memoriam: The Newtown victims</a>
</li>
<li>
<a href="http://www.hlntv.com/article/2012/12/15/newtown-connecticut-school-shooting-aftermath?hpt=hp_bn15">Dispatch from a new Newtown</a>
</li>
<li>
<a href="http://www.hlntv.com/article/2012/12/16/connecticut-shooting-sandy-hook-victims-profiles?hpt=hp_bn15">Who were the Newtown victims?</a>
</li>
<li>
<a href="http://www.hlntv.com/article/2012/12/15/ways-talk-your-kids-about-sandy-hook-elementary-school-shooting?hpt=hp_bn15">Ways to talk to kids about Sandy Hook</a>
</li>
<li>
<a href="http://www.hlntv.com/video/2012/12/15/ct-shooting-can-we-prevent-another-tragedy?hpt=hp_bn15">Can we prevent another tragedy?</a>
<a href="http://www.hlntv.com/video/2012/12/15/ct-shooting-can-we-prevent-another-tragedy?hpt=hp_bn15"><img src="http://i.cdn.turner.com/cnn/.element/img/3.0/global/icons/video_icon.gif" alt="Video" border="0" width="16" height="10" class="cnn_vidicon"></a>
</li>
<li>
<a href="http://www.hlntv.com/video/2012/12/16/connecticut-school-shooting-how-schools-can-protect-students-better?hpt=hp_bn15">How to make our schools safer</a>
<a href="http://www.hlntv.com/video/2012/12/16/connecticut-school-shooting-how-schools-can-protect-students-better?hpt=hp_bn15"><img src="http://i.cdn.turner.com/cnn/.element/img/3.0/global/icons/video_icon.gif" alt="Video" border="0" width="16" height="10" class="cnn_vidicon"></a>
</li>
<li>
<a href="http://www.hlntv.com/video/2012/12/15/sandy-hook-shooting-governor-dan-malloy?hpt=hp_bn15">Malloy: 'Hug someone we love a little tighter'</a>
<a href="http://www.hlntv.com/video/2012/12/15/sandy-hook-shooting-governor-dan-malloy?hpt=hp_bn15"><img src="http://i.cdn.turner.com/cnn/.element/img/3.0/global/icons/video_icon.gif" alt="Video" border="0" width="16" height="10" class="cnn_vidicon"></a>
</li>
</ul>
</ul>
</div>
<div class="cnn_mtpmore"><a href="http://www.hlntv.com/?hpt=hp_bn15" class="cnn_mtpmorebtn"><img src="http://i.cdn.turner.com/cnn/.e/img/3.0/1px.gif" alt="More" border="0"/></a></div>
</div>
<div class="cnn_adspc155x31">
</div>
</div>
<div class="cnn_sectbin2">
<div class="cnn_sectbincntnt_full">
<div class="cnn_sectbincntnt2">
<h4><a href='http://sportsillustrated.cnn.com/?xid=cnnnav&hpt=hp_bn16'>SI.com</a></h4>
<div class="cnn_clear"></div>
<div class="cnn_divline"></div>
<ul class="cnn_bulletbin">
<li> <a href=http://nfl.si.com/2012/12/16/nfl-pays-tribute-to-victims-of-sandy-hook-school-shooting/?sct=hp_t2_a10&eref=sihp&hpt=hp_bn16 target="_blank">NFL honors Sandy Hook victims</a>
</li>
<li> <a href=http://nba.si.com/2012/12/15/newtown-shooting-lebron-james-kevin-durant-kobe-bryant/?sct=uk_t2_a11&hpt=hp_bn16 target="_blank">NBA stars pay tribute to victims</a>
</li>
<li> <a href=http://nfl.si.com/2012/12/17/colin-kaepernick-helps-49ers-withstand-frantic-patriots-rally-on-sunday-night/?sct=hp_t11_a3&eref=sihp&hpt=hp_bn16 target="_blank">49ers withstand Patriots rally</a>
</li>
<li> <a href=http://sportsillustrated.cnn.com/nfl/news/20121216/redskins-giants-nfc-east/?sct=hp_t12_a3&eref=sihp&hpt=hp_bn16 target="_self">Hail to the Redskins</a>
</li>
<li> <a href=http://sportsillustrated.cnn.com/nfl/news/20121216/broncos-ravens-joe-flacco/?sct=hp_t12_a8&eref=sihp&hpt=hp_bn16 target="_self">Ravens season slipping away</a>
</li>
<li> <a href=http://www.fannation.com/truth_and_rumors/view/356954-big-ben-openly-questions-play-calling?eref=fromSI&hpt=hp_bn16 target="_blank">Big Ben unhappy with offense</a>
</li>
<li> <a href=http://nba.si.com/2012/12/13/jason-kidd-jamal-crawford-unexpected-veteran-contributors/&hpt=hp_bn16#?sct=uk_t11_a7 target="_blank">NBA veterans provide boost</a>
</li>
</ul>
</div>
<div class="cnn_mtpmore"><a href="http://sportsillustrated.cnn.com/?xid=cnnnav&hpt=hp_bn16" class="cnn_mtpmorebtn"><img src="http://i.cdn.turner.com/cnn/.e/img/3.0/1px.gif" alt="More" border="0"/></a></div>
</div>
<div class="cnn_adspc155x31">
</div>
</div>
<div class="cnn_sectbin3">
<div class="cnn_sectbincntnt_full">
<div class="cnn_sectbincntnt2">
<h4><a href='http://games.cnn.com/?hpt=hp_bn17'>Play CNN Games!</a></h4>
<div class="cnn_clear"></div>
<div class="cnn_divline"></div>
<ul class="cnn_bulletbin">
<!-- element not processed, not of type title, bulletbins, or article -->
<!-- adTag should not be processed here -->
<!-- subtype found: webtag -->
</ul>
<a href="http://games.cnn.com/?hpt=hp_bn17"><img src="http://i.cdn.turner.com/cnn/.element/img/3.0/games/main_logo.png" width="220" height="84"/></a>
<br/><br/>
<ul class="cnn_bulletbin">
<li>
<a href="http://games.cnn.com/games/mahjongg-dimensions/mahjongg-dimensions.aspx?hpt=hp_bn17">Play Mahjongg Dimensions!</a>
</li><li>
<a href="http://games.cnn.com/games/tri-peaks-solitaire/tri-peaks-solitaire.aspx?hpt=hp_bn17">Play Tri Peaks Solitaire!</a>
</li><li>
<a href="http://games.cnn.com/games/jigsaw-puzzle/jigsaw-puzzle.aspx?hpt=hp_bn17">Play now: CNN Jigsaw!</a>
</li></ul>
</div>
<div class="cnn_mtpmore"><a href="http://games.cnn.com/?hpt=hp_bn17" class="cnn_mtpmorebtn"><img src="http://i.cdn.turner.com/cnn/.e/img/3.0/1px.gif" alt="More" border="0"/></a></div>
</div>
<div class="cnn_adspc155x31">
</div>
</div>
<div class="cnn_sectbin4 cnn_sbhottopics cnn_quickvotebin">
<!-- expected target subtype of quickVote or adTag, found: not found -->
<div class="cnn_sectbincntnt">
<h4>Quick vote</h4><div class="cnn_clear"></div><div class="cnn_divline"></div>
<!--/POLLSERVER/htmltemplates/questions/inline_question.html-->
<script>var qvq_count=0;</script>
<div id="cnnQV_Content_63473">
<form action="http://polls.cnn.com/poll" id="qv_poll_63473" method="post" target="qv_iframe_63473">
<input name="poll_id" type="hidden" value="63473"/>
<div class="cnn_qvbv3"><h5 id="cnnQV_quesTxT">Do you own a gun?</h5></div>
<div class="cnn_qvbv4">
<ul>
<li><input id="cnnPollA1" name="question_1" type="radio" value="1"/> <label for="cnnPollA1" id="cnnPoll_Q1L1">Yes</label></li>
<script>qvq_count++;</script>
<li><input id="cnnPollA2" name="question_1" type="radio" value="2"/> <label for="cnnPollA2" id="cnnPoll_Q1L2">No</label></li>
<script>qvq_count++;</script>
</ul><div class="cnn_clear"></div>
</div>
<!-- /end Question 1 -->
<div class="cnn_qvbvote">
<div class="cnn_qvbv1"><a href="javascript:qvSubmitVote_63473();" class="cnn_frmqvtbtn"><img src="http://i.cdn.turner.com/cnn/.e/img/3.0/1px.gif" border="0" height="1" width="1"/></a></div>
<div class="cnn_qvbv2"><span>or </span><a href="javascript:qvGetResults_63473();">view results</a></div>
<div class="cnn_clear"></div>
</div>
</form>
</div>
<iframe frameborder="0" height="1" id="qv_iframe_63473" name="qv_iframe_63473" style="visibility:hidden;height:1px;border:0px" width="1"></iframe>
<script>
var qv_submitted_63473;
function qvSubmitVote_63473(){qv_submitted_63473=1;$('qv_poll_63473').submit();qvGetResults_63473();}
function qvGetResults_63473(){
CSIManager.getInstance().call('http:/\/www.cnn.com/POLLSERVER/results/63473.content.html','','cnnQV_Content_63473',cnn_qvBPHTML_63473,true);
}
function cnn_qvBPHTML_63473(obj,id,configObj){
var qvtemp_arr=[];
for(i=1;i<=qvq_count;i++){qvtemp_arr[(i-1)]={'a_txt':$('cnnPoll_Q1L'+i).innerHTML,'vote_c':parseInt(obj.poll_values[i].vote_count),'vote_p':parseInt(obj.poll_values[i].vote_percent)};}
qvtemp_arr.sort(cnn_qvCompRes);
return cnn_qvBResHTML(obj,qvtemp_arr,'63473');
}
function cnn_qvBResHTML(obj,qv_arr,poll_id){
var h='<div class="cnn_qvbv14"><div class="cnn_qvbv16">';
h+='<h5>'+$('cnnQV_quesTxT').innerHTML+'</h5>';
if(obj.related_story){h+='<div class="cnn_qvbv5"><a href="'+obj.related_story+'">Read Related Articles</a></div>';}
h+='</div><div class="cnn_qvbv15">This is not a scientific poll</div></div><div class="cnn_qvbv6">';
for(i=0;i<qv_arr.length;i++){
h+='<div class="cnn_qvbv7';
if(i==0){h+=' cnn_qvbvactv';}
h+='"><div class="cnn_qvbv8">'+qv_arr[i].a_txt+'</div><div class="cnn_qvbv9"><div style="';
if(qv_arr[i].vote_p>0){h+='width:'+qv_arr[i].vote_p+'px;';}
h+='"></div></div><div class="cnn_qvbv10">'+qv_arr[i].vote_p+'%</div><div class="cnn_qvbv11">'+qv_arr[i].vote_c+'</div><div class="cnn_clear"></div></div>';
}
h+='<div class="cnn_qvbv12">Total votes: '+obj.total_vote_count+'</div><div class="cnn_qvbv13">This is not a scientific poll</div></div>';
return h;
}
function cnn_qvCompRes(a,b){return b.vote_c-a.vote_c;}
</script>
</div>
<div class="cnn_clear"></div>
</div>
<div class="cnn_clear"></div>
<div class="cnn_shdcafooter"></div>
<div class="cnn_pad2top cnn_shdspc"></div>
</div>
<div class="cnnfooterTemplateWrapper">
<div class="cnnFooterTemplate">
<div class="header">
<span class="sponsor-entitlement"></span>
<h4 class="mainHeader"><a href="/video/?hpt=hp_tvvideo">TV & Video</a></h4>
</div>
<div class="content">
<div class="cnn_column cnnNowPlaying">
<script type="text/html" id="nowplayingFooter-template">
<div data-bind="click:function(){document.location=$data.link()+'?hpt=hp_tvvideo'}" class="cnn_column cnnNowPlaying">
<a class="tn">
<div class="nowPlaying thumbnail">
<img data-bind="attr:{src:thumbnail()}" class="thumb"/>
<span data-bind="text:status()" class="onNow">On Now</span>
</div>
</a>
<div id="infoBox">
<h4 data-bind="text:title(),click:function(){document.location=$data.link()+'?hpt=hp_tvvideo'}" class="headline"></h4>
<span data-bind="text:description126(),visible:(isTVE())" class="description"></span>
</div>
<a data-bind="attr:{href: $data.link()+'?hpt=hp_tvvideo'}" class="cnn_hpftdomvmodlnks2"></a>
</div>
</script>
<span
class="cnn_widget"
type="nowplaying"
version="1.0.2"
channel="CNN"
video="cvptve/cvpstream1"
templates=""
data-bind="template: { name: 'nowplayingFooter-template'}"></span>
</div>
<div class="cnn_column moreVideos">
<ul class="cnnSiteMenus">
<li><a href="http://cnnradio.cnn.com/?hpt=hp_tvvideo">CNN Radio</a></li>
<li><a href="http://www.hlntv.com/?hpt=hp_tvvideo">HLN</a></li>
<li><a href="http://www.cnn.com/CNN/Programs/?hpt=hp_tvvideo">Full Schedule</a></li>
<li class="cnnTVprograms">
<form class="tvPrograms">
<select onchange="if(this.options[selectedIndex].value!=''){location.href=this.options[selectedIndex].value;}">
<option value="/Programs/?hpt=hp_tvvideo">TV Programs
<option value="" disabled="disabled" class="disabledProgram">----------------------------------------
<option value="/CNN/Programs/?hpt=hp_tvvideo">Today's schedule
<option value="" disabled="disabled" class="disabledProgram">----- CNN Weekdays -----
<option value="http://outfront.blogs.cnn.com/?hpt=hp_tvvideo">Erin Burnett OutFront
<option value="http://ac360.blogs.cnn.com/?hpt=hp_tvvideo">Anderson Cooper 360
<option value="http://piersmorgan.blogs.cnn.com/?hpt=hp_tvvideo">Piers Morgan Tonight
<option value="http://earlystart.blogs.cnn.com/?hpt=hp_tvvideo">Early Start
<option value="http://startingpoint.blogs.cnn.com/?hpt=hp_tvvideo">Starting Point
<option value="http://newsroom.blogs.cnn.com/?hpt=hp_tvvideo">CNN Newsroom
<option value="http://situationroom.blogs.cnn.com/?hpt=hp_tvvideo">The Situation Room
<option value="" disabled="disabled" class="disabledProgram">----- CNN Weekends -----
<option value="http://sanjayguptamd.blogs.cnn.com/?hpt=hp_tvvideo">Sanjay Gupta MD
<option value="http://yourbottomline.blogs.cnn.com/?hpt=hp_tvvideo">Your Bottom Line
<option value="http://yourmoney.blogs.cnn.com/?hpt=hp_tvvideo">Your Money
<option value="http://sotu.blogs.cnn.com/?hpt=hp_tvvideo">State of the Union
<option value="http://globalpublicsquare.blogs.cnn.com/?hpt=hp_tvvideo">Fareed Zakaria GPS
<option value="http://reliablesources.blogs.cnn.com/?hpt=hp_tvvideo">Reliable Sources
<option value="http://whatsnext.blogs.cnn.com/category/the-next-list/?hpt=hp_tvvideo">The Next List
<option value="" disabled="disabled" class="disabledProgram">----- Other CNN -----
<option value="http://inamerica.blogs.cnn.com/?hpt=hp_tvvideo">In America
<option value="/SPECIALS/cnn.heroes/?hpt=hp_tvvideo">CNN Heroes
<option value="http://cnnpresents.blogs.cnn.com/?hpt=hp_tvvideo">CNN Presents
<option value="http://cnnpresents.blogs.cnn.com/?hpt=hp_tvvideo">Spec. Investigations Unit
<option value="/studentnews/?hpt=hp_tvvideo">CNN Student News
<option value="" disabled="disabled" class="disabledProgram">----- HLN -----
<option value="http://www.hlntv.com/shows/morning-express-robin-meade/?hpt=hp_tvvideo">Morning Express with Robin Meade
<option value="/CNN/Programs/prime.news/?hpt=hp_tvvideo">Prime News
<option value="http://www.hlntv.com/shows/jane-velez-mitchell/?hpt=hp_tvvideo">Jane Velez-Mitchell
<option value="http://www.hlntv.com/shows/nancy-grace/?hpt=hp_tvvideo">Nancy Grace
<option value="http://www.hlntv.com/shows/dr-drew/?hpt=hp_tvvideo">Dr. Drew
<option value="http://www.hlntv.com/shows/clark-howard/?hpt=hp_tvvideo">Clark Howard
<option value="/CNN/Programs/showbiz.tonight/?hpt=hp_tvvideo">Showbiz Tonight
</select>
</form>
</li>
</ul>
<h4>Must Watch TV</h4>
<ol class="cnnMustWatchTv">
<li onclick="location.href='/video/?collection=STARTING_POINT&hpt=hp_tvvideo';"><a rel="external" href="/video/?collection=STARTING_POINT&hpt=hp_tvvideo"><img src="http://i.cdn.turner.com/cnn/.element/widget/hp_footer_dom/images/soledad.png" alt="Soledad" /><span class="clipHeadline show">Starting Point</span><br /><span class="time">7am ET / 4am PT on CNN</span></a></li>
<li onclick="location.href='/video/?collection=The_Situation_Room&hpt=hp_tvvideo';"><a rel="external" href="/video/?collection=The_Situation_Room&hpt=hp_tvvideo"><img src="http://i.cdn.turner.com/cnn/.element/widget/hp_footer_dom/images/tsr.png" alt="The Situation Room" /><span class="clipHeadline show">The Situation Room</span><br /><span class="time">4pm ET / 1pm PT on CNN</span></a></li>
<li onclick="location.href='/video/?collection=Erin_Burnett_Out_Front&hpt=hp_tvvideo';"><a rel="external" href="/video/?collection=Erin_Burnett_Out_Front&hpt=hp_tvvideo"><img src="http://i.cdn.turner.com/cnn/.element/widget/hp_footer_dom/images/ebof.png" alt="Erin Burnett: OutFront" /><span class="clipHeadline show">Erin Burnett: OutFront</span><br /><span class="time">7pm ET / 4pm PT on CNN</span></a></li>
<li onclick="location.href='/video/?collection=Anderson_Cooper_360&hpt=hp_tvvideo';"><a rel="external" href="/video/?collection=Anderson_Cooper_360&hpt=hp_tvvideo"><img src="http://i.cdn.turner.com/cnn/.element/widget/hp_footer_dom/images/ac360.png" alt="AC 360" /><span class="clipHeadline show">AC 360</span><br /><span class="time">8pm ET/PT on CNN</span></a></li>
<li onclick="location.href='/video/?collection=Piers_Morgan&hpt=hp_tvvideo';"><a rel="external" href="/video/?collection=Piers_Morgan&hpt=hp_tvvideo"><img src="http://i.cdn.turner.com/cnn/.element/widget/hp_footer_dom/images/piers.png" alt="Piers Morgan Tonight" /><span class="clipHeadline show">Piers Morgan Tonight</span><br /><span class="time">9pm ET/PT on CNN</span></a></li>
</ol>
<ul class="cnnSiteMenus">
<li><a href="/video/?hpt=hp_tvvideo">View Collections</a></li>
</ul>
<h4>Trending Video</h4>
<script type="text/html" id="homepageFooter-template">
<ol data-bind="foreach:videos().slice(0,5),visible:(videos().length>0)" class="cnnTrendingVideo">
<li data-bind="click:function(){document.location=($data.clickbackUrl()+'&hpt=hp_tvvideo')},attr:{title:clickbackUrl}">
<img data-bind="attr:{src:thumbnail}"/>
<span data-bind="text:headline" class="clipHeadline"></span>
<span data-bind="text:formatTRT" class="videoTRT"></span>
</li>
</ol>
</script>
<span
class="cnn_widget cnnMustWatchTv"
type="videofeed"
version="1.0.1"
feed_name="Top Videos"
feed_url="http://data.cnn.com/jsonp/video/mostpopular.json"
templates=""
data-bind="template: { name: 'homepageFooter-template'}"></span>
</div>
</div>
</div>
</div>
<div id="fb-root"></div>
<script>window.cnnWidgetBaseURI="http://z.cdn.turner.com/cnn/.element/widget";</script>
<script src="http://i.cdn.turner.com/cnn/.e/widget/loader/1.0.0/load.min.js"></script>
<div align="center"> <div class="cnn_pad6top"></div> <div><div class='cnn_contentarea cnn_filterareabox'><div class='cnn_sdbx'><div class='cnn_sdbx1'><div class='cnn_sdbx2'><div class='cnn_sdbx3'><div class='cnn_sdbx4'><div class='cnn_sdbx5'><div class='cnn_sdbxcntnt'> <div class="cnn_contentarea cnn_filterareabox"><div class="cnn_sect300x100bx"> <script>cnnad_newTileIDGroup(['300x100_bot1','300x100_bot2','300x100_bot3']);</script> <div class="cnn_adcntr300x100"> <div class="cnn_adspc300x100"> <div style="height:100px;"><!-- ADSPACE: homepage/main/bot1.300x100 -->
<!-- CALLOUT|http://ads.cnn.com/html.ng/site=cnn&cnn_pagetype=main&cnn_position=300x100_bot1&cnn_rollup=homepage&page.allowcompete=no¶ms.styles=fs|CALLOUT -->
<div id="ad-384575" align="center" style="padding: 0; margin: 0; border: 0;"></div><script>cnnad_createAd("384575","http://ads.cnn.com/html.ng/site=cnn&cnn_pagetype=main&cnn_position=300x100_bot1&cnn_rollup=homepage&page.allowcompete=no¶ms.styles=fs","100","300");cnnad_registerSpace(384575,300,100);</script></div> <div class="cnn_adspctimg"><img src="http://i.cdn.turner.com/cnn/.e/img/3.0/global/misc/advertisement.gif" alt="ADVERTISEMENT" border="0" height="5" width="58"/></div> </div> <div class="cnn_adspc300x100 cnn_adspcmid"> <div style="height:100px;"><!-- ADSPACE: homepage/main/bot2.300x100 -->
<!-- CALLOUT|http://ads.cnn.com/html.ng/site=cnn&cnn_pagetype=main&cnn_position=300x100_bot2&cnn_rollup=homepage&page.allowcompete=no¶ms.styles=fs|CALLOUT -->
<div id="ad-429723" align="center" style="padding: 0; margin: 0; border: 0;"></div>
<script type="text/javascript">
cnnad_createAd("429723","http://ads.cnn.com/html.ng/site=cnn&cnn_pagetype=main&cnn_position=300x100_bot2&cnn_rollup=homepage&page.allowcompete=no¶ms.styles=fs","100","300");
cnnad_registerSpace(429723,300,100);
</script>
</div> <div class="cnn_adspctimg"><img src="http://i.cdn.turner.com/cnn/.e/img/3.0/global/misc/advertisement.gif" alt="ADVERTISEMENT" border="0" height="5" width="58"/></div> </div> <div class="cnn_adspc300x100"> <div style="height:100px;"><!-- ADSPACE: homepage/main/bot3.300x100 -->
<!-- CALLOUT|http://ads.cnn.com/html.ng/site=cnn&cnn_pagetype=main&cnn_position=300x100_bot3&cnn_rollup=homepage&page.allowcompete=no¶ms.styles=fs|CALLOUT -->
<div id="ad-201357" align="center" style="padding: 0; margin: 0; border: 0;"></div><script>cnnad_createAd("201357","http://ads.cnn.com/html.ng/site=cnn&cnn_pagetype=main&cnn_position=300x100_bot3&cnn_rollup=homepage&page.allowcompete=no¶ms.styles=fs","100","300");cnnad_registerSpace(201357,300,100);</script></div> <div class="cnn_adspctimg"><img src="http://i.cdn.turner.com/cnn/.e/img/3.0/global/misc/advertisement.gif" alt="ADVERTISEMENT" border="0" height="5" width="58"/></div> </div><div class="cnn_clear"></div> </div> </div></div> </div></div></div></div></div></div></div></div> <div id="cnn_ftrcntnt"><div class="clearfix" id="cnn_ftrcntntinner"> <div class="cnn_ftrdivl1"></div> <div id="pmWeatherFooter" style="visibility:visible"><p><strong></strong></p></div> <div id="ftr-search"> <form action="http://www.cnn.com/search/" method="get" onsubmit="return cnnSearch(this);"> <div class="ftr-search-datacntr"> <div class="ftr-search-tfield"><input id="ftr-search-box" maxlength="100" name="query" size="12" type="text" value=""/></div> <div class="ftr-search-sicon"><input alt="Search" src="http://i.cdn.turner.com/cnn/.e/img/3.0/search/search_btn_footer.gif" type="image"/></div> </div> <input id="cnnFtrSrchType" name="primaryType" type="hidden" value="mixed"/> <input name="sortBy" type="hidden" value="relevance"/> <input name="intl" type="hidden" value="false"/> <div class="cnn_ftrggle"><img src="http://i.cdn.turner.com/cnn/.e/img/3.0/global/footer/pngs/footer_google.png" alt="Powered by Google" border="0" class="cnn_ie6png" height="13" width="88"/></div> </form> </div> <div class="cnn_clear"></div> <div class="cnn_divline" style="background-color:#ebebeb;margin-top:3px"></div> <div class="cnn_ftrnvlnks"> <div><a href="/">Home</a> | <a href="/video/">Video</a> | <a href="/trends/">CNN Trends</a> | <a href="/US/">U.S.</a> | <a href="/WORLD/">World</a> | <a href="/POLITICS/">Politics</a> | <a href="/JUSTICE/">Justice</a> | <a href="/SHOWBIZ/">Entertainment</a> | <a href="/TECH/">Tech</a> | <a href="/HEALTH/">Health</a> | <a href="/LIVING/">Living</a> | <a href="/TRAVEL/">Travel</a> | <a href="/OPINION/">Opinion</a> | <a href="http://ireport.cnn.com/?cnn=yes">iReport</a> | <a href="http://money.cnn.com/?cnn=yes">Money</a> | <a href="http://sportsillustrated.cnn.com/?xid=cnnfoot">Sports</a></div> <div><a href="/tools/index.html">Tools & widgets</a> | <a href="/services/rss/">RSS</a> | <a href="/services/podcasting/">Podcasts</a> | <a href="/exchange/blogs/index.html">Blogs</a> | <a href="/mobile/">CNN mobile</a> | <a href="/profile/">My profile</a> | <a href="/profile/">E-mail alerts</a> | <a href="http://www.turnerstoreonline.com/">CNN shop</a> | <a href="/sitemap/">Site map</a></div> </div> <div class="cnn_ftrdivl2"></div> <div class="cnn_ftrlnggcntr"> <div><a href="/espanol/" hreflang="es" title="CNN in Spanish">CNN en ESPAÑOL</a> | <a href="http://www.cnnchile.com" hreflang="es">CNN Chile</a> | <a href="http://www.cnnexpansion.com" hreflang="es">CNN Expansion</a> | <a href="http://arabic.cnn.com/" hreflang="ar" title="CNN Arabic">العربية</a> | <a href="http://cnn.joins.com/" hreflang="ko" title="CNN Korean">한국어</a> | <a href="http://www.cnn.co.jp/" hreflang="ja" title="CNN Japan">日本語</a> | <a href="http://www.cnnturk.com/" hreflang="tr" title="CNN Turkey">Türkçe</a></div> <div><a href="/CNN/Programs/" title="CNN TV programming schedule">CNN TV</a> | <a href="/HLN/">HLN</a> | <a href="http://transcripts.cnn.com/TRANSCRIPTS/">Transcripts</a> | </div> </div> <div class="cnn_ftrlgcpy"> <div><img src="http://i.cdn.turner.com/cnn/.e/img/3.0/global/footer/pngs/footer_cnn_logo.png" alt="CNN" border="0" class="cnn_ie6png" height="11" width="23"/>© 2012 Cable News Network. <a href="http://www.turner.com/" class="cnn_ftrtbslink">Turner Broadcasting System, Inc.</a> All Rights Reserved.</div> <div class="cnn_ftrlgcpy1"><a href="/interactive_legal.html" rel="nofollow">Terms of service</a> | <a href="/privacy.html" rel="nofollow">Privacy guidelines</a> | <a href="/services/ad.choices/" rel="nofollow">Ad choices</a><img src="http://i.cdn.turner.com/cnn/.e/img/3.0/global/misc/logo_ad_choices_footer.png" alt="" border="0" class="cnn_ie6png" height="12" style="margin:0pt 0pt 0pt 4px;" width="12"/> | <a href="/services/advertise/main.html" rel="nofollow">Advertise with us</a> | <a href="/about/" rel="nofollow">About us</a> | <a href="/feedback/">Contact us</a> | <a href="http://www.turner.com/careers/">Work for us</a> | <a href="/help/" rel="help">Help</a></div> </div><div class="cnn_clear"></div> </div></div> </div> </div> <script src="http://z.cdn.turner.com/cnn/tmpl_asset/static/www_global/796/js/globallib-min.js"></script> <script src="http://content.dl-rms.com/rms/mother/5721/nodetag.js"></script> <script src="http://icompass.insightexpressai.com/97.js"></script> <script src="http://ad.insightexpressai.com/adserver/adServer.aspx?publisherID=97"></script> <script src="http://js.revsci.net/gateway/gw.js?csid=A09801"></script> <script>cnnad_sendADMData();cnnad_ugsync();if(ms_isLoggedIn()){CNN_setCookie('CNN_member',true,854400,'/',document.domain);}</script> <img src="http://i.cdn.turner.com/cnn/images/1.gif" alt="" height="1" id="TargetImage" name="TargetImage" onload="getAdHeadCookie(this)" width="1"/> <div id="csimanagerdiv"><div id="csiIframeObjscsi2"><iframe style="visibility:hidden;position:absolute;top:0px;left:-100px;" name="csiDataIframecsi2" id="csiDataIframecsi2" src="http://svcs.cnn.com/weather/getForecast?time=24&mode=json_html&zipCode=30303&locCode=&celcius=false&csiID=csi2" width="10" height="10"></iframe></div></div> <div id="csimanagerdivdelayed"></div>
<!--jsmd-->
<script src="http://z.cdn.turner.com/cnn/.e/js/libs/jsmd-312.js"></script>
<script>
// This code is not really related to JSMD. It was simply a convenient place to add a quick hack to all pages that use this SSI.
// removes a cookie that grows too large and causes a 400 error
// CNN-17021
try {
document.cookie = "mrvPages=http://www.cnn.com; expires=Fri, 13-Apr-1970 00:00:00 GMT; path=/; domain=" + document.domain;
}
catch(e) {}
</script>
<script>
var jsmd=_jsmd.init(),pageURL=location.href.toLowerCase();
if (pageURL.indexOf("/.element/ssi/ads.iframes/")==-1&&pageURL.indexOf("/doubleclick/dartiframe.html")==-1&&pageURL.indexOf("/search/")==-1){
if (_jsmd.plugin.gQuery("refresh")){
jsmd.trackMetrics("dynamic-autoRefresh","autorefresh","cnn-autorefresh");
} else if (_jsmd.plugin.gQuery("is_LR")){
} else if (cnn_metadata.template_type_content!="gallery"){
jsmd.send();
}
}
</script>
<!--/jsmd-->
<script>
/*globals FOOTERTOOLS*/
$j(window).load(function () {
'use strict';
FOOTERTOOLS.init();
});
</script>
<!-- ADSPACE: homepage/bot.1x1 -->
<!-- CALLOUT|http://ads.cnn.com/html.ng/site=cnn&cnn_pagetype=main&cnn_position=1x1_bot&cnn_rollup=homepage&page.allowcompete=no¶ms.styles=fs|CALLOUT -->
<div id="ad-638159" align="center" style="padding: 0; margin: 0; border: 0;"></div><script>cnnad_createAd("638159","http://ads.cnn.com/html.ng/site=cnn&cnn_pagetype=main&cnn_position=1x1_bot&cnn_rollup=homepage&page.allowcompete=no¶ms.styles=fs","1","1");cnnad_registerSpace(638159,1,1);</script>
<script>
$j(document).ready(function () {
'use strict';
loadChartbeat("homepage", "");
cnnzite_mod.init();
});
</script>
<script>
/*globals MainLocalObj*/
$j(window).load(function () {
'use strict';
MainLocalObj.init();
});
</script></body>
</html>
|