-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Expand file tree
/
Copy pathcnn_article.html
More file actions
1044 lines (1018 loc) · 73.5 KB
/
Copy pathcnn_article.html
File metadata and controls
1044 lines (1018 loc) · 73.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE HTML>
<html itemscope itemtype="http://schema.org/NewsArticle" lang="en-US">
<head>
<title>After storm, forecasters see smooth sailing for Thanksgiving - CNN.com</title>
<meta charset="UTF-8"/>
<meta content="2013-11-28T02:03:23Z" http-equiv="last-modified"/>
<meta content="index,follow" name="robots"/>
<meta content="noarchive" name="googlebot"/>
<meta content="width=1024" name="viewport"/>
<meta content="news" itemprop="genre" name="medium"/>
<meta content="en-US" itemprop="inLanguage"/>
<meta content="After storm, forecasters see smooth sailing for Thanksgiving - CNN.com" name="title"/>
<meta content="A strong storm struck much of the eastern United States on Wednesday, complicating holiday plans for many of the 43 million Americans expected to travel." itemprop="description" name="description" property="og:description"/>
<meta content="winter storm,holiday travel,Thanksgiving storm,Thanksgiving winter storm" itemprop="keywords" name="keywords"/>
<meta content="winter storm,holiday travel,Thanksgiving storm,Thanksgiving winter storm" name="news_keywords"/>
<meta content="Dana Ford and Tom Watkins, CNN" itemprop="author" name="author"/>
<meta content="travel" itemprop="articleSection" name="section"/>
<meta content="CNN" itemprop="sourceOrganization" name="source"/>
<meta content="" name="subsection"/>
<meta content="2013-11-27T08:36:32Z" itemprop="datePublished" name="pubdate"/>
<meta content="2013-11-28T02:03:23Z" itemprop="dateModified" name="lastmod"/>
<meta content="2013-11-27T08:36:32Z" itemprop="dateCreated"/>
<meta content="" itemprop="contentLocation"/>
<meta content="After storm, forecasters see smooth sailing for Thanksgiving" itemprop="headline" property="og:title" />
<meta content="article" property="og:type"/>
<meta content="http://www.cnn.com/2013/11/27/travel/weather-thanksgiving/index.html" itemprop="url" property="og:url"/>
<meta content="CNN" property="og:site_name"/>
<meta content="http://i2.cdn.turner.com/cnn/dam/assets/131129200805-01-weather-1128-story-top.jpg" itemprop="thumbnailUrl" property="og:image"/>
<meta content="18793419640" property="fb:page_id"/>
<meta property="article:publisher" content="https://www.facebook.com/cnninternational" />
<meta property="vr:canonical" content="http://edition.cnn.com/2013/11/27/travel/weather-thanksgiving/index.html">
<meta content="CNN" property="og:site_name"/>
<meta content="80401312489" property="fb:app_id"/>
<meta property="twitter:card" content="summary" />
<meta property="twitter:site" content="@CNNI"/>
<meta property="twitter:site:id" content="2097571"/>
<meta property="twitter:creator" content="@cnntravel"/>
<meta property="twitter:creator:id" content="174377718"/>
<link href="http://www.cnn.com/2013/11/27/travel/weather-thanksgiving/index.html" rel="canonical"/>
<link href="/" rel="Start"/>
<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="/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://rss.cnn.com/rss/cnn_latest.rss" rel="alternate" title="" type="application/rss+xml"/>
<link href="http://z.cdn.turner.com/cnn/tmpl_asset/static/www_article/1891/css/artlib-min.css" rel="stylesheet" type="text/css"/>
<link href="http://mediacdn.disqus.com/1296789715/styles/dtpl/defaults.css" rel="stylesheet" type="text/css"/>
<link href="http://disqus.com/forums/cnn/styles.css" rel="stylesheet" type="text/css"/>
<link href="http://widgets.outbrain.com/mu/css/outbrainWidget.css?v=33961" id="cssLinkID" rel="stylesheet" type="text/css"/>
<link href="https://plus.google.com/u/0/b/117515799321987910349/117515799321987910349/posts" rel="publisher"/>
<script>
var cnnCurrTime=new Date(1406199056000),
cnnCurrHour=6,
cnnCurrMin=50,
cnnCurrDay="Thu",
cnnIsIntl=true,
clickID=212106,
cnn_cvpAdpre="edition.",
cnnCVPAdSectionT1="edition.cnn.com_travel_t1",
cnnCVPAdSectionInPage="edition.cnn.com_travel_inpage",
cnnShareUrl="%2F2013%2F11%2F27%2Ftravel%2Fweather-thanksgiving%2Findex.html",
cnnShareTitle="After%20storm%2C%20forecasters%20see%20smooth%20sailing%20for%20Thanksgiving",
cnnShareDesc="",
cnnFirstPub=new Date('Wednesday Nov 27 03:36:32 EST 2013'),
cnnSectionName="travel",
sectionName="travel",
cnnSubSectionName="trv : news",
cnnPageType="Story",
cnnBrandingValue="default";
cnnPartnerValue="";
cnnOmniBranding="",
cnnAuthor="Dana Ford and Tom Watkins, CNN",
disqus_category_id=207582,
disqus_identifier="/2013/11/27/travel/weather-thanksgiving/index.html",
disqus_title="After storm, forecasters see smooth sailing for Thanksgiving",
cnn_edtnswtchver="edition",
cnnIsStoryPage=true,
cnn_metadata = {},
cnn_shareconfig = [];
cnn_metadata = {
section: [
"travel",
"trv : news"
],
friendly_name: "After storm, forecasters see smooth sailing for Thanksgiving",
template_type: "content",
template_type_content: "gallery",
business: {
cnn: {
page: {
author: "Dana Ford and Tom Watkins, CNN",
broadcast_franchise: "",
video_embed_count: "4",
publish_date: "2013/11/27",
photo_gallery: "After storm, forecasters see smooth sailing for Thanksgiving"
},
video: {
video_player: ""
}
}
},
user: {
authenticated: "",
segment: {
age: "",
zip: "",
gender: ""
}
}
};
if (typeof(cnnOmniPartner) !== "undefined") {
if (cnn_metadata.template_type_content === "") {
cnn_metadata.template_type_content = "partner";
}
}
var photo_gallery = "After storm, forecasters see smooth sailing for Thanksgiving";
</script>
<script src="http://z.cdn.turner.com/cnn/tmpl_asset/static/www_article/1891/js/artlib-min.js"></script>
<script>
if(typeof CNN==='undefined'){var CNN=Class.create();}
CNN.expandableMap=[''];
function _loginOptions(){};
var disqus_url=(typeof disqus_identifier!=='undefined') ? 'http://www.cnn.com/2013/11/27/travel/weather-thanksgiving/index.html' : 'http://www.cnn.com'+location.pathname;
cnnad_newTileIDGroup(['970x66_top','300x250_rgt','300x250_rgt2','336x280_rgt','336x850_rgt','300x150_rgt','728x90_top','728x90_bot','BG_Skin','120x90_bot1','120x90_bot2','120x90_bot3']);
cnnad_newTileIDGroup(['607x95_adlinks','336x280_adlinks']);
</script>
<!--
<script src="http://connect.facebook.net/en_US/all.js"></script>
-->
<!--adType:mmst-->
</head>
<body>
<a name="top_of_page"></a><a href="#ContentArea"><img src="http://i.cdn.turner.com/cnn/images/1.gif" align="right" alt="Skip to main content" border="0" height="1" hspace="0" style="display:none;" vspace="0" width="10"/></a>
<!-- begin default international header -->
<!-- TODO: unobtrusive js refactor -->
<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 id="hdr-banner-title" href="/" title="">
<img src="http://i.cdn.turner.com/cnn/.element/img/3.0/global/header/intl/hdr-globe-central.gif" width="190" height="82" alt="CNN" />
</a>
</div>
<div id="hdr-editions">
<ul>
<li class="no-pad-left"><span>EDITION: INTERNATIONAL</span></li>
<li><a id="cnn_switchEdition_us" href="http://us.cnn.com/?hpt=ed_US" title="CNN US">U.S.</a></li>
<li><a href="http://www.cnnmexico.com/hpt=ed_Mexico" title="CNN MÉXICO">MÉXICO</a></li>
<li class="no-border"><a href="http://arabic.cnn.com/?hpt=ed_Arabic" 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="http://edition.cnn.com/CNN/Programs" class="cnn_hdr-editionlnk">TV</a>: </span></li>
<li><a href="http://edition.cnn.com/cnni/">CNNi</a></li>
<li class="no-border"><a href="http://cnnespanol.cnn.com/">CNN en Español</a></li>
</ul>
</div>
<div id="cnn_hdr-editionS"><a href="javascript:cnn_initeditionhtml(3);">Set edition preference</a></div>
</div>
<div id="hdr-auth">
<ul>
<li><a href="javascript:void(0)" onclick="showOverlay('profile_signup_overlay');return false;" title="">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</a></li>
</ul>
</div>
<div id="hdr-search">
<form method="get" action="/search/" onsubmit="return cnnSearch(this);">
<div class="ftr-search-datacntr">
<div class="ftr-search-tfield"><input type="text" name="query" size="12" maxlength="40" value="" id="hdr-search-box"></div>
<div class="ftr-search-sicon"><input type="image" src="http://i.cdn.turner.com/cnn/.element/img/3.0/search/btn_search_hp_text.gif" width="55" height="21" alt=""></div>
</div>
<input type="hidden" name="primaryType" id="cnnHeadSrchType" value="mixed">
</form>
<script>
//Event.observe(window, 'load', function() {
//$('hdr-search-box').focus();
//});
</script>
<style>
#hdr-editions a { text-decoration:none; }
#cnn_hdr-editionS { text-align:left;clear:both; }
#cnn_hdr-editionS a { text-decoration:none;font-size:10px;top:7px;line-height:12px;font-weight:bold; }
#hdr-prompt-text b { display:inline-block;margin:0 0 0 20px; }
#hdr-editions li { padding:0 10px; }
#hdr-editions ul li.no-pad-left span { font-size:12px; }
.hdr-arrow-intl, .hdr-arrow-us, .hdr-arrow-us2 { left:148px; }
.hdr-arrow-us2 { left:180px; }
</style>
</div>
</div>
</div>
<div id="cnn_hdr-nav">
<ul id="intl-menu">
<li class="no-border"><a id="nav-home" class="nav-media no-border" href="/" title="Breaking, World, Business, Sports, Entertainment and Video News from CNN.com International">Home</a></li>
<li class="no-border"><a id="nav-video" class="nav-media no-border" href="/video/" title="Breaking News Videos from CNN.com International">Video</a></li>
<li><a id="nav-world" href="/WORLD/" title="World News Headlines and Video from CNN.com International">World</a></li>
<li><a id="nav-us" href="/US/" title="U.S. News Headlines and Video from CNN.com International">U.S.</a></li>
<li><a id="nav-africa" href="/AFRICA/" title="Africa News Headlines and Video from CNN.com International">Africa</a></li>
<li><a id="nav-asia" href="/ASIA/" title="Asia News Headlines and Video from CNN.com International">Asia</a></li>
<li><a id="nav-europe" href="/EUROPE/" title="Europe News Headlines and Video from CNN.com International">Europe</a></li>
<li><a id="nav-latin-america" href="/LATINAMERICA/" title="Latin America News Headlines and Video from CNN.com International">Latin America</a></li>
<li><a id="nav-middle-east" href="/MIDDLEEAST/" title="Middle East News Headlines and Video from CNN.com International">Middle East</a></li>
<li><a id="nav-business" href="/BUSINESS/" title="World Business News Headlines and Video from CNN.com International">Business</a></li>
<li><a id="nav-world-sport" href="/SPORT/" title="World Sport News Headlines and Video from CNN.com International">World Sport</a></li>
<li><a id="nav-entertainment" href="/SHOWBIZ/" title="Entertainment News Headlines and Video from CNN.com International">Entertainment</a></li>
<li><a id="nav-tech" href="/TECH/" title="Technology News Headlines and Video from CNN.com International">Tech</a></li>
<li><a id="nav-travel" class="nav-on" href="http://travel.cnn.com/" title="Travel News Headlines and Video from CNN.com International">Travel</a></li>
<li><a id="nav-ireport" href="http://www.ireport.com/" title="CNN iReport – Share your story, discuss the issues with CNN.com International">iReport</a></li>
</ul>
</div>
</div>
<script type="text/javascript">
</script>
<!-- end header -->
<div align="center" id="cnnContainer"><div class="cnn_maincntnr"><div class="cnn_containerwht cnn_contentarea">
<!-- this is where the breaking news CSI code will go -->
<div id="cnnBannerContainer" class="cnn_www_banner" data-vr-zone="breakingbanner" data-vr-contentbox=""></div>
<script type="text/javascript">
CSIManager.getInstance().call('/.element/ssi/intl/breaking_news/3.0/banner.html','','cnnBannerContainer',cnnRenderInternationalBanner);
</script>
<div id="cnnSetEditionContainer"></div>
<div id="cnnMakeHPContainer"></div>
<div class="cnn_storyarea" id="cnnContentContainer">
<div class="cnn_stryarblkbr"></div>
<div class="cnn_strybtntools">
<div id="cnn_sharebar1">
<div class="c_sharebar_cntr c_sharebar_loading">
<div class="c_sharelftcol">
<div class="c_sharetitle">SHARE THIS</div>
<div class="c_sharebtns">
<ul>
<li class="c_sharebtn c_sharebtnfb"><a href="javascript:void(0);" onclick="cnnsocial.share.click('cnn_sharebar1', 'facebook');"></a></li>
<li class="c_sharebtn c_sharebtntwtr"><a href="javascript:void(0);" onclick="cnnsocial.share.click('cnn_sharebar1', 'twitter');"></a></li>
<li class="c_sharebtn c_sharebtngplus"><a href="javascript:void(0);" onclick="cnnsocial.share.click('cnn_sharebar1', 'googleplus');"></a></li>
<li class="c_sharebtn c_sharebtnlnkn"><a href="javascript:void(0);" onclick="cnnsocial.share.click('cnn_sharebar1', 'linkedin');"></a></li>
</ul>
<div class="cnn_clear"></div>
</div>
<div class="fb-like" data-send="false" data-layout="button_count" data-width="150" data-show-faces="false" data-action="recommend" href="http://www.cnn.com/2013/11/27/travel/weather-thanksgiving/index.html"></div>
</div><!-- /c_sharelftcol -->
<div class="c_sharedivcol"></div>
<div class="c_shareweb c_sharergtcol">
<ul>
<li class="cnn_sswdgtweb1"><a href="#" onclick="if(typeof CleanPrintPrintHtml!='undefined' && CleanPrintPrintHtml) CleanPrintPrintHtml(); else window.print(); return false;">Print</a></li>
<li class="cnn_sswdgtweb2"><a href="#" onclick="return(ET());">Email</a></li>
<li class="cnn_sswdgtweb3"><a href="javascript:void(0);" onclick="$j('#cnn_sharebarmore1').toggle();">More sharing</a>
<div id="cnn_sharebarmore1" class="sharebar_othersites sharebar_othersitesl" style="display:none;">
<div class="shareProp">
<div class="sharebutton_reddit" title="Reddit"><a href="javascript:void(0);" onclick="cnnsocial.share.click('cnn_sharebar1', 'reddit');">Reddit</a></div>
</div>
<div class="shareProp">
<div class="sharebutton_stumbleupon" title="StumbleUpon"><a href="javascript:void(0);" onclick="cnnsocial.share.click('cnn_sharebar1', 'stumbleupon');">StumbleUpon</a></div>
</div>
<div class="shareProp">
<div class="sharebutton_delicious" title="Delicious"><a href="javascript:void(0);" onclick="cnnsocial.share.click('cnn_sharebar1', 'delicious');">Delicious</a></div>
</div>
</div>
</li>
</ul>
</div><!-- /c_sharergtcol -->
<div class="cnn_clear"></div>
</div>
</div>
</div>
<script>
/* push in config for this share instance */
cnn_shareconfig.push({
"id" : "cnn_sharebar1",
"url" : "http://www.cnn.com/2013/11/27/travel/weather-thanksgiving/index.html",
"title" : "After storm, forecasters see smooth sailing for Thanksgiving"
});
</script>
<!--google_ad_section_start--><!--startclickprintinclude-->
<h1>After storm, forecasters see smooth sailing for Thanksgiving</h1>
<!--endclickprintinclude--><!--startclickprintexclude-->
<!--no partner-->
<div class="cnn_stryathrtmp">
<div class="cnnByline">By <strong>Dana Ford </strong>and<strong> Tom Watkins, </strong>CNN</div>
<div class="cnn_strytmstmp">November 28, 2013 -- Updated 0203 GMT (1003 HKT)</div>
</div>
<!--google_ad_section_end-->
<div class="cnn_strycntntlft">
<!--startclickprintexclude-->
<script>
if (typeof cnnArticleGallery=="undefined"){
var cnnArticleGallery={};
if(typeof cnnArticleGallery.currentImageList=="undefined"){
cnnArticleGallery.currentImageList=[];
}
}
var expGalleryPT00=new ArticleExpandableGallery();
expGalleryPT00.setImageCount(14);
expGalleryPT00.setAdsRefreshCount(3);
//cnn_adbptrackpgalimg("Weather threatens holiday plans", 1);
</script>
<style type="text/css">
.cnn_html_slideshow_metadata > .cnn_html_media_utility::before{color:red;content:'>>';font-size:9px;line-height:12px;padding-right:1px}
.cnnstrylccimg640{margin:0 27px 14px 0}
.captionText{filter:alpha(opacity=100);opacity:1}
.cnn_html_slideshow_media_caption a,.cnn_html_slideshow_media_caption a:visited,.cnn_html_slideshow_media_caption a:link,.captionText a,.captionText a:visited,.captiontext a:link{color:#004276;outline:medium none}
.cnnVerticalGalleryPhoto{margin:0 auto;padding-right:68px;width:270px}
</style>
<div class="cnnExplainer cnn_html_slideshow">
<div class="cnnstrylccimg640"><div class="cnn_stryichgfull"><div class="cnn_stryichgflg">
<div class="cnnArticleGalleryPhotoContainer">
<img src="http://i2.cdn.turner.com/cnn/dam/assets/131129200805-01-weather-1128-horizontal-gallery.jpg" alt="Police officers adjust a barricade as people wait in cold weather along the route of the Macy's Thanksgiving Day Parade on Thursday, November 28, in New York. " border="0" height="360" id="articleGalleryPhoto001" style="margin:0 auto;" width="640"/>
<cite style="" id="galleryCaption001">Police officers adjust a barricade as people wait in cold weather along the route of the Macy's Thanksgiving Day Parade on Thursday, November 28, in New York. </cite>
<script>cnnArticleGallery.currentImageList[cnnArticleGallery.currentImageList.length]={"currentPicture":true,"x":0,"y":0,"pos":1,"title":"Weather threatens holiday plans"}</script>
</div>
<div class="cnnArticleGalleryPhotoContainer">
<img src="http://i2.cdn.turner.com/cnn/dam/assets/131129201158-02-weather-1128-horizontal-gallery.jpg" alt="Passengers wait for a BoltBus to arrive during a light rain on Wednesday, November 27, in New York. A wall of storms packing ice, sleet and rain threatened to suspend holiday travel plans as millions of Americans took to the roads, skies and rails. " border="0" height="360" id="articleGalleryPhoto002" style="margin:0 auto;display:none" width="640"/>
<cite style="display:none" id="galleryCaption002">Passengers wait for a BoltBus to arrive during a light rain on Wednesday, November 27, in New York. A wall of storms packing ice, sleet and rain threatened to suspend holiday travel plans as millions of Americans took to the roads, skies and rails. </cite>
<script>cnnArticleGallery.currentImageList[cnnArticleGallery.currentImageList.length]={"currentPicture":false,"x":0,"y":0,"pos":2,"title":"Weather threatens holiday plans"}</script>
</div>
<div class="cnnArticleGalleryPhotoContainer">
<img src="http://i2.cdn.turner.com/cnn/dam/assets/131127180330-01-macys-weather-horizontal-gallery.jpg" alt="The Snoopy balloon for the Macy's Parade is partially inflated on Wednesday, November 27, in New York. High winds threatened to keep the balloons on the ground during Thursday's Macy's Thanksgiving parade. A colossal storm system that began in California complicated Thanksgiving travel plans all the way to the Atlantic, causing many transportation delays." border="0" height="360" id="articleGalleryPhoto003" style="margin:0 auto;display:none" width="640"/>
<cite style="display:none" id="galleryCaption003">The Snoopy balloon for the Macy's Parade is partially inflated on Wednesday, November 27, in New York. High winds threatened to keep the balloons on the ground during Thursday's Macy's Thanksgiving parade. A colossal storm system that began in California complicated Thanksgiving travel plans all the way to the Atlantic, causing many transportation delays.</cite>
<script>cnnArticleGallery.currentImageList[cnnArticleGallery.currentImageList.length]={"currentPicture":false,"x":0,"y":0,"pos":3,"title":"Weather threatens holiday plans"}</script>
</div>
<div class="cnnArticleGalleryPhotoContainer">
<img src="http://i2.cdn.turner.com/cnn/dam/assets/131127064752-02-weather-1127-horizontal-gallery.jpg" alt="An employee signals a plane out of the gate at Ronald Reagan National Airport outside of Washington on Tuesday, November 26." border="0" height="360" id="articleGalleryPhoto004" style="margin:0 auto;display:none" width="640"/>
<cite style="display:none" id="galleryCaption004">An employee signals a plane out of the gate at Ronald Reagan National Airport outside of Washington on Tuesday, November 26.</cite>
<script>cnnArticleGallery.currentImageList[cnnArticleGallery.currentImageList.length]={"currentPicture":false,"x":0,"y":0,"pos":4,"title":"Weather threatens holiday plans"}</script>
</div>
<div class="cnnArticleGalleryPhotoContainer">
<img src="http://i2.cdn.turner.com/cnn/dam/assets/131127064601-01-weather-1127-horizontal-gallery.jpg" alt="Travelers wait in security lines at Reagan National Airport on November 26." border="0" height="360" id="articleGalleryPhoto005" style="margin:0 auto;display:none" width="640"/>
<cite style="display:none" id="galleryCaption005">Travelers wait in security lines at Reagan National Airport on November 26.</cite>
<script>cnnArticleGallery.currentImageList[cnnArticleGallery.currentImageList.length]={"currentPicture":false,"x":0,"y":0,"pos":5,"title":"Weather threatens holiday plans"}</script>
</div>
<div class="cnnArticleGalleryPhotoContainer">
<img src="http://i2.cdn.turner.com/cnn/dam/assets/131127071921-06-weather-1127-horizontal-gallery.jpg" alt="Vehicles pick up passengers in heavy rain at Reagan National Airport on November 26." border="0" height="360" id="articleGalleryPhoto006" style="margin:0 auto;display:none" width="640"/>
<cite style="display:none" id="galleryCaption006">Vehicles pick up passengers in heavy rain at Reagan National Airport on November 26.</cite>
<script>cnnArticleGallery.currentImageList[cnnArticleGallery.currentImageList.length]={"currentPicture":false,"x":0,"y":0,"pos":6,"title":"Weather threatens holiday plans"}</script>
</div>
<div class="cnnArticleGalleryPhotoContainer">
<img src="http://i2.cdn.turner.com/cnn/dam/assets/131127072336-07-weather-1127-horizontal-gallery.jpg" alt="A pedestrian walks through snow showers along Penn Ave in Pittsburgh on November 26." border="0" height="360" id="articleGalleryPhoto007" style="margin:0 auto;display:none" width="640"/>
<cite style="display:none" id="galleryCaption007">A pedestrian walks through snow showers along Penn Ave in Pittsburgh on November 26.</cite>
<script>cnnArticleGallery.currentImageList[cnnArticleGallery.currentImageList.length]={"currentPicture":false,"x":0,"y":0,"pos":7,"title":"Weather threatens holiday plans"}</script>
</div>
<div class="cnnArticleGalleryPhotoContainer">
<img src="http://i2.cdn.turner.com/cnn/dam/assets/131126134827-winter-weather-1126-horizontal-gallery.jpg" alt="Mark Swigart uses a leaf blower to remove snow from the sidewalks November 26 in Pittsburgh." border="0" height="360" id="articleGalleryPhoto008" style="margin:0 auto;display:none" width="640"/>
<cite style="display:none" id="galleryCaption008">Mark Swigart uses a leaf blower to remove snow from the sidewalks November 26 in Pittsburgh.</cite>
<script>cnnArticleGallery.currentImageList[cnnArticleGallery.currentImageList.length]={"currentPicture":false,"x":0,"y":0,"pos":8,"title":"Weather threatens holiday plans"}</script>
</div>
<div class="cnnArticleGalleryPhotoContainer">
<img src="http://i2.cdn.turner.com/cnn/dam/assets/131127071253-04-weather-1127-horizontal-gallery.jpg" alt="Holiday travelers make their way to their car on November 26 after arriving at Pittsburgh International Airport." border="0" height="360" id="articleGalleryPhoto009" style="margin:0 auto;display:none" width="640"/>
<cite style="display:none" id="galleryCaption009">Holiday travelers make their way to their car on November 26 after arriving at Pittsburgh International Airport.</cite>
<script>cnnArticleGallery.currentImageList[cnnArticleGallery.currentImageList.length]={"currentPicture":false,"x":0,"y":0,"pos":9,"title":"Weather threatens holiday plans"}</script>
</div>
<div class="cnnArticleGalleryPhotoContainer">
<img src="http://i2.cdn.turner.com/cnn/dam/assets/131127071625-05-weather-1127-horizontal-gallery.jpg" alt="People walk in the rain through Union Square in Manhattan on November 26. New York was bracing for severe weather as the storm made its way east." border="0" height="360" id="articleGalleryPhoto0010" style="margin:0 auto;display:none" width="640"/>
<cite style="display:none" id="galleryCaption0010">People walk in the rain through Union Square in Manhattan on November 26. New York was bracing for severe weather as the storm made its way east.</cite>
<script>cnnArticleGallery.currentImageList[cnnArticleGallery.currentImageList.length]={"currentPicture":false,"x":0,"y":0,"pos":10,"title":"Weather threatens holiday plans"}</script>
</div>
<div class="cnnArticleGalleryPhotoContainer">
<img src="http://i2.cdn.turner.com/cnn/dam/assets/131126082136-01-holiday-weather-1026-horizontal-gallery.jpg" alt="Employees at Dallas-Fort Worth International Airport de-ice a plane before departure on Monday, November 25." border="0" height="360" id="articleGalleryPhoto0011" style="margin:0 auto;display:none" width="640"/>
<cite style="display:none" id="galleryCaption0011">Employees at Dallas-Fort Worth International Airport de-ice a plane before departure on Monday, November 25.</cite>
<script>cnnArticleGallery.currentImageList[cnnArticleGallery.currentImageList.length]={"currentPicture":false,"x":0,"y":0,"pos":11,"title":"Weather threatens holiday plans"}</script>
</div>
<div class="cnnArticleGalleryPhotoContainer">
<img src="http://i2.cdn.turner.com/cnn/dam/assets/131125140556-01-snow-storm-1125-horizontal-gallery.jpg" alt="A fallen tree is removed from a car in Odessa, Texas, on November 25." border="0" height="360" id="articleGalleryPhoto0012" style="margin:0 auto;display:none" width="640"/>
<cite style="display:none" id="galleryCaption0012">A fallen tree is removed from a car in Odessa, Texas, on November 25.</cite>
<script>cnnArticleGallery.currentImageList[cnnArticleGallery.currentImageList.length]={"currentPicture":false,"x":0,"y":0,"pos":12,"title":"Weather threatens holiday plans"}</script>
</div>
<div class="cnnArticleGalleryPhotoContainer">
<img src="http://i2.cdn.turner.com/cnn/dam/assets/131124205202-05-weather-1124-horizontal-gallery.jpg" alt="A plow and sanding truck heads up Paseo del Norte in Albuquerque, New Mexico, on Sunday, November 24." border="0" height="360" id="articleGalleryPhoto0013" style="margin:0 auto;display:none" width="640"/>
<cite style="display:none" id="galleryCaption0013">A plow and sanding truck heads up Paseo del Norte in Albuquerque, New Mexico, on Sunday, November 24.</cite>
<script>cnnArticleGallery.currentImageList[cnnArticleGallery.currentImageList.length]={"currentPicture":false,"x":0,"y":0,"pos":13,"title":"Weather threatens holiday plans"}</script>
</div>
<div class="cnnArticleGalleryPhotoContainer">
<img src="http://i2.cdn.turner.com/cnn/dam/assets/131124203216-01-weather-1124-horizontal-gallery.jpg" alt="Cars slide on Paseo del Norte in Albuquerque on November 24." border="0" height="360" id="articleGalleryPhoto0014" style="margin:0 auto;display:none" width="640"/>
<cite style="display:none" id="galleryCaption0014">Cars slide on Paseo del Norte in Albuquerque on November 24.</cite>
<script>cnnArticleGallery.currentImageList[cnnArticleGallery.currentImageList.length]={"currentPicture":false,"x":0,"y":0,"pos":14,"title":"Weather threatens holiday plans"}</script>
</div>
<div class="cnn_clear"></div>
<div class="cnnArticleGalleryCaptionControl">
<div class="cnnArticleGalleryCaptionControlText" id="galleryCaptionControl00" onclick="expGalleryPT00.toggleArticleGalleryCaption(0,0)">HIDE CAPTION</div>
<div class="cnn_clear"></div>
</div>
<div class="cnn_html_media_title_new" id="gallerySlideTitle001">Weather threatens holiday plans</div>
<div class="cnn_html_media_title_new cnn_html_media_title_none" id="gallerySlideTitle002">Weather threatens holiday plans</div>
<div class="cnn_html_media_title_new cnn_html_media_title_none" id="gallerySlideTitle003">Weather threatens holiday plans</div>
<div class="cnn_html_media_title_new cnn_html_media_title_none" id="gallerySlideTitle004">Weather threatens holiday plans</div>
<div class="cnn_html_media_title_new cnn_html_media_title_none" id="gallerySlideTitle005">Weather threatens holiday plans</div>
<div class="cnn_html_media_title_new cnn_html_media_title_none" id="gallerySlideTitle006">Weather threatens holiday plans</div>
<div class="cnn_html_media_title_new cnn_html_media_title_none" id="gallerySlideTitle007">Weather threatens holiday plans</div>
<div class="cnn_html_media_title_new cnn_html_media_title_none" id="gallerySlideTitle008">Weather threatens holiday plans</div>
<div class="cnn_html_media_title_new cnn_html_media_title_none" id="gallerySlideTitle009">Weather threatens holiday plans</div>
<div class="cnn_html_media_title_new cnn_html_media_title_none" id="gallerySlideTitle0010">Weather threatens holiday plans</div>
<div class="cnn_html_media_title_new cnn_html_media_title_none" id="gallerySlideTitle0011">Weather threatens holiday plans</div>
<div class="cnn_html_media_title_new cnn_html_media_title_none" id="gallerySlideTitle0012">Weather threatens holiday plans</div>
<div class="cnn_html_media_title_new cnn_html_media_title_none" id="gallerySlideTitle0013">Weather threatens holiday plans</div>
<div class="cnn_html_media_title_new cnn_html_media_title_none" id="gallerySlideTitle0014">Weather threatens holiday plans</div>
</div></div></div>
<div class="cnn_gallery_divline"></div>
<div style="background-color:#000;color:#FFF;height:27px">
<div id="articleGalleryNav00JumpPrev" class="cnnArticleGalleryNavPrevNextDisabled"><span><<</span></div>
<div id="articleGalleryNav00Prev" onclick="expGalleryPT00.galleryPrev(0,0)" class="cnnArticleGalleryNavPrevNextDisabled"><span><</span></div>
<div class="articleGalleryNavContainer">
<div id="articleGalleryNav001" class="cnnArticleGalleryNavOn" onmouseout="expGalleryPT00.hideArticleThumb(0,0,1)" onmouseover="expGalleryPT00.showArticleThumb(0,0,1)" onclick="expGalleryPT00.changePage(0,0,1)">
<div id="articleGalleryThumb001" style="position:absolute;width:60px;height:60px;border:2px solid #444;bottom:24px;display:none;left:0px">
<img src="http://i2.cdn.turner.com/cnn/dam/assets/131129200805-01-weather-1128-topics.jpg" border="0"/>
</div>
<span style="height:21px;padding:4px 0 0 0">1</span>
</div>
<div id="articleGalleryNav002" class="cnnArticleGalleryNav" onmouseout="expGalleryPT00.hideArticleThumb(0,0,2)" onmouseover="expGalleryPT00.showArticleThumb(0,0,2)" onclick="expGalleryPT00.changePage(0,0,2)">
<div id="articleGalleryThumb002" style="position:absolute;width:60px;height:60px;border:2px solid #444;bottom:24px;display:none;left:27px">
<img src="http://i2.cdn.turner.com/cnn/dam/assets/131129201158-02-weather-1128-topics.jpg" border="0"/>
</div>
<span style="height:21px;padding:4px 0 0 0">2</span>
</div>
<div id="articleGalleryNav003" class="cnnArticleGalleryNav" onmouseout="expGalleryPT00.hideArticleThumb(0,0,3)" onmouseover="expGalleryPT00.showArticleThumb(0,0,3)" onclick="expGalleryPT00.changePage(0,0,3)">
<div id="articleGalleryThumb003" style="position:absolute;width:60px;height:60px;border:2px solid #444;bottom:24px;display:none;left:54px">
<img src="http://i2.cdn.turner.com/cnn/dam/assets/131127180330-01-macys-weather-topics.jpg" border="0"/>
</div>
<span style="height:21px;padding:4px 0 0 0">3</span>
</div>
<div id="articleGalleryNav004" class="cnnArticleGalleryNav" onmouseout="expGalleryPT00.hideArticleThumb(0,0,4)" onmouseover="expGalleryPT00.showArticleThumb(0,0,4)" onclick="expGalleryPT00.changePage(0,0,4)">
<div id="articleGalleryThumb004" style="position:absolute;width:60px;height:60px;border:2px solid #444;bottom:24px;display:none;left:81px">
<img src="http://i2.cdn.turner.com/cnn/dam/assets/131127064752-02-weather-1127-topics.jpg" border="0"/>
</div>
<span style="height:21px;padding:4px 0 0 0">4</span>
</div>
<div id="articleGalleryNav005" class="cnnArticleGalleryNav" onmouseout="expGalleryPT00.hideArticleThumb(0,0,5)" onmouseover="expGalleryPT00.showArticleThumb(0,0,5)" onclick="expGalleryPT00.changePage(0,0,5)">
<div id="articleGalleryThumb005" style="position:absolute;width:60px;height:60px;border:2px solid #444;bottom:24px;display:none;left:108px">
<img src="http://i2.cdn.turner.com/cnn/dam/assets/131127064601-01-weather-1127-topics.jpg" border="0"/>
</div>
<span style="height:21px;padding:4px 0 0 0">5</span>
</div>
<div id="articleGalleryNav006" class="cnnArticleGalleryNav" onmouseout="expGalleryPT00.hideArticleThumb(0,0,6)" onmouseover="expGalleryPT00.showArticleThumb(0,0,6)" onclick="expGalleryPT00.changePage(0,0,6)">
<div id="articleGalleryThumb006" style="position:absolute;width:60px;height:60px;border:2px solid #444;bottom:24px;display:none;left:135px">
<img src="http://i2.cdn.turner.com/cnn/dam/assets/131127071921-06-weather-1127-topics.jpg" border="0"/>
</div>
<span style="height:21px;padding:4px 0 0 0">6</span>
</div>
<div id="articleGalleryNav007" class="cnnArticleGalleryNav" onmouseout="expGalleryPT00.hideArticleThumb(0,0,7)" onmouseover="expGalleryPT00.showArticleThumb(0,0,7)" onclick="expGalleryPT00.changePage(0,0,7)">
<div id="articleGalleryThumb007" style="position:absolute;width:60px;height:60px;border:2px solid #444;bottom:24px;display:none;left:162px">
<img src="http://i2.cdn.turner.com/cnn/dam/assets/131127072336-07-weather-1127-topics.jpg" border="0"/>
</div>
<span style="height:21px;padding:4px 0 0 0">7</span>
</div>
<div id="articleGalleryNav008" class="cnnArticleGalleryNav" onmouseout="expGalleryPT00.hideArticleThumb(0,0,8)" onmouseover="expGalleryPT00.showArticleThumb(0,0,8)" onclick="expGalleryPT00.changePage(0,0,8)">
<div id="articleGalleryThumb008" style="position:absolute;width:60px;height:60px;border:2px solid #444;bottom:24px;display:none;left:189px">
<img src="http://i2.cdn.turner.com/cnn/dam/assets/131126134827-winter-weather-1126-topics.jpg" border="0"/>
</div>
<span style="height:21px;padding:4px 0 0 0">8</span>
</div>
<div id="articleGalleryNav009" class="cnnArticleGalleryNav" onmouseout="expGalleryPT00.hideArticleThumb(0,0,9)" onmouseover="expGalleryPT00.showArticleThumb(0,0,9)" onclick="expGalleryPT00.changePage(0,0,9)">
<div id="articleGalleryThumb009" style="position:absolute;width:60px;height:60px;border:2px solid #444;bottom:24px;display:none;left:216px">
<img src="http://i2.cdn.turner.com/cnn/dam/assets/131127071253-04-weather-1127-topics.jpg" border="0"/>
</div>
<span style="height:21px;padding:4px 0 0 0">9</span>
</div>
<div id="articleGalleryNav0010" class="cnnArticleGalleryNav" onmouseout="expGalleryPT00.hideArticleThumb(0,0,10)" onmouseover="expGalleryPT00.showArticleThumb(0,0,10)" onclick="expGalleryPT00.changePage(0,0,10)">
<div id="articleGalleryThumb0010" style="position:absolute;width:60px;height:60px;border:2px solid #444;bottom:24px;display:none;left:243px">
<img src="http://i2.cdn.turner.com/cnn/dam/assets/131127071625-05-weather-1127-topics.jpg" border="0"/>
</div>
<span style="height:21px;padding:4px 0 0 0">10</span>
</div>
<div id="articleGalleryNav0011" class="cnnArticleGalleryNav" onmouseout="expGalleryPT00.hideArticleThumb(0,0,11)" onmouseover="expGalleryPT00.showArticleThumb(0,0,11)" onclick="expGalleryPT00.changePage(0,0,11)">
<div id="articleGalleryThumb0011" style="position:absolute;width:60px;height:60px;border:2px solid #444;bottom:24px;display:none;left:270px">
<img src="http://i2.cdn.turner.com/cnn/dam/assets/131126082136-01-holiday-weather-1026-topics.jpg" border="0"/>
</div>
<span style="height:21px;padding:4px 0 0 0">11</span>
</div>
<div id="articleGalleryNav0012" class="cnnArticleGalleryNav" onmouseout="expGalleryPT00.hideArticleThumb(0,0,12)" onmouseover="expGalleryPT00.showArticleThumb(0,0,12)" onclick="expGalleryPT00.changePage(0,0,12)">
<div id="articleGalleryThumb0012" style="position:absolute;width:60px;height:60px;border:2px solid #444;bottom:24px;display:none;left:297px">
<img src="http://i2.cdn.turner.com/cnn/dam/assets/131125140556-01-snow-storm-1125-topics.jpg" border="0"/>
</div>
<span style="height:21px;padding:4px 0 0 0">12</span>
</div>
<div id="articleGalleryNav0013" class="cnnArticleGalleryNav" onmouseout="expGalleryPT00.hideArticleThumb(0,0,13)" onmouseover="expGalleryPT00.showArticleThumb(0,0,13)" onclick="expGalleryPT00.changePage(0,0,13)">
<div id="articleGalleryThumb0013" style="position:absolute;width:60px;height:60px;border:2px solid #444;bottom:24px;display:none;left:324px">
<img src="http://i2.cdn.turner.com/cnn/dam/assets/131124205202-05-weather-1124-topics.jpg" border="0"/>
</div>
<span style="height:21px;padding:4px 0 0 0">13</span>
</div>
<div id="articleGalleryNav0014" class="cnnArticleGalleryNav" onmouseout="expGalleryPT00.hideArticleThumb(0,0,14)" onmouseover="expGalleryPT00.showArticleThumb(0,0,14)" onclick="expGalleryPT00.changePage(0,0,14)">
<div id="articleGalleryThumb0014" style="position:absolute;width:60px;height:60px;border:2px solid #444;bottom:24px;display:none;left:351px">
<img src="http://i2.cdn.turner.com/cnn/dam/assets/131124203216-01-weather-1124-topics.jpg" border="0"/>
</div>
<span style="height:21px;padding:4px 0 0 0">14</span>
</div>
</div>
<div id="articleGalleryNav00Next" onclick="expGalleryPT00.galleryNext(0,0)" class="cnnArticleGalleryNavPrevNext"><span>></span></div>
<div id="articleGalleryNav00JumpNext" class="cnnArticleGalleryNavPrevNextDisabled"><span>>></span></div>
<div class="cnn_clear"></div>
</div>
</div>
<script>
Event.observe(window,'load',function(){
if(typeof(cnn_adbptrackpgalimg) == 'function' && typeof(cnnArticleGallery) != 'undefined'){
cnn_adbptrackpgalimg(cnnArticleGallery.currentImageList[0].image,"After storm, forecasters see smooth sailing for Thanksgiving");
}
});
</script>
<a name="em0"></a>
<div class="cnn_strylftcntnt"><div class="cnn_strylctcntr">
<div><strong>STORY HIGHLIGHTS</strong></div>
<ul class="cnn_bulletbin cnnStryHghLght">
<!--google_ad_section_start-->
<li><b>NEW:</b> The worst of holiday travel fears fail to materialize</li>
<li><b>NEW:</b> "Tomorrow will be a quieter day," says CNN meteorologist</li>
<li>Fate of Macy's Thanksgiving Day Parade balloons still up in the air </li>
<!--google_ad_section_end-->
</ul>
</div></div>
<div class="cnn_strylftcntnt adtag15090">
</div>
<!--endclickprintexclude--><!--google_ad_section_start--><!--startclickprintinclude-->
<p class="cnnEditorialNote"><em>Are you in the grips of the wintry storm sweeping across the country? Please share <a href='http://ireport.cnn.com/topics/1060026'>your videos, pictures and stories at iReport</a>.</em></p>
<p><strong>(CNN)</strong> -- The Pennsylvania official was just talking about one area, but he summed up a winter storm that struck much of the eastern United States on Wednesday.</p>
<p class="cnn_storypgraphtxt cnn_storypgraph2">"We dodged a bullet," said Steve Cowan, a spokesman for the Pennsylvania Department of Transportation.</p>
<p class="cnn_storypgraphtxt cnn_storypgraph3">As night fell, travelers and transportation authorities breathed a collective sigh of relief as the worst of holiday travel fears failed to materialize. The storm caused some complications and inconveniences, but no major delays or breakdowns.</p>
<p class="cnn_storypgraphtxt cnn_storypgraph4">Forecasters see mostly smooth sailing into Thanksgiving.</p>
<p class="cnn_storypgraphtxt cnn_storypgraph5">CNN meteorologist Todd Borek predicted some lake-effect snowfall over the Great Lakes and fresh snow from a weak disturbance for the Upper Midwest.</p>
<p class="cnn_storypgraphtxt cnn_storypgraph6">But, he added: "The worst in terms of widespread snow and rain is over. Tomorrow will be a quieter day, although wind gusts will continue to be a problem overnight and Thursday for the Northeast."</p>
<p class="cnn_storypgraphtxt cnn_storypgraph7">That's good news for people like Latasha Abney, who joined the more than 43 million Americans expected by AAA to travel over the Thanksgiving holiday weekend.</p>
<p class="cnn_storypgraphtxt cnn_storypgraph8">Abney said Wednesday that she arrived more than two hours early at Washington's Reagan National Airport to catch a flight to New York's JFK.</p>
<p class="cnn_storypgraphtxt cnn_storypgraph9">"I thought the lines were going to be ridiculous," she said in an e-mail. "I was second in line checking my bag with Delta (checked into my flight last night) and security was a breeze. I walked right up, the TSA agent checked my info and I immediately started the security process. And now the wait begins. It's pretty quiet by the gates. Not too many people roaming around. So far, so good! Happy Thanksgiving!!!!"</p>
<p class="cnn_storypgraphtxt cnn_storypgraph10">Brian M. Good said he, too, was expecting a horrible trip when he departed New York for Newark to get a flight to San Diego.</p>
<p class="cnn_storypgraphtxt cnn_storypgraph11">"Instead the roads were dead," he said in an e-mail. "It's warm outside and it stopped raining. No lines at the airport and flight is on time. Wish the forecasters were wrong all the time :)"</p>
<p class="cnn_storypgraphtxt cnn_storypgraph13"><strong>Will winds whip parade balloons?</strong></p>
<p class="cnn_storypgraphtxt cnn_storypgraph14">Though the worst of the storm has passed, winds could still pose a problem.</p>
<p class="cnn_storypgraphtxt cnn_storypgraph15"><a href='http://www.cnn.com/2013/11/27/travel/thanksgiving-parade-balloons/index.html'>The forecast has left up in the air the fate of the balloons in Macy's Thanksgiving Day Parade</a>. They are to be grounded if sustained winds reach 23 mph or gusts exceed 34 mph -- both slightly above predicted strength.</p>
<p class="cnn_storypgraphtxt cnn_storypgraph16">A decision will be made Thursday morning before the parade's 9 a.m. ET scheduled start.</p>
<p class="cnn_storypgraphtxt cnn_storypgraph17">"Tomorrow before the event, we'll make a determination -- the police department, the incident commander -- whether the balloons will fly or not," Patrol Chief James Hall with the New York Police Department said Wednesday.</p>
<p class="cnn_storypgraphtxt cnn_storypgraph18">"It looks good. It looks very good," he said about the possibility of balloons in the air.</p>
<p class="cnn_storypgraphtxt cnn_storypgraph19">But there is ample reason to support the caution.</p>
<p class="cnn_storypgraphtxt cnn_storypgraph20">In 1997, a woman spent more than three weeks in a coma after the Cat in the Hat balloon -- tossed by heavy winds -- struck a pole that hit her. In 2005, two other people were hurt in a similar incident involving the M&Ms balloon.</p>
<p class="cnn_storypgraphtxt cnn_storypgraph21">Officials say that improved weather monitoring devices en route and a police sergeant assigned to each balloon will minimize any danger.</p>
<p class="cnn_storypgraphtxt cnn_storypgraph22">"We came all the way from Puerto Rico to see the parade, so it will be a disappointment if we don't see the balloons," said Jose Ramirez, who was in New York with his family.</p>
<p class="cnn_storypgraphtxt cnn_storypgraph23">Either way, the parade -- with or without the balloons -- will go on, organizers say.</p>
<p class="cnn_storypgraphtxt cnn_storypgraph25"><strong>Planes, trains ...</strong></p>
<p class="cnn_storypgraphtxt cnn_storypgraph26">Delays were reported at several airports in the Northeast on Wednesday.</p>
<p class="cnn_storypgraphtxt cnn_storypgraph27"><a href='http://www.cnn.com/2013/11/26/travel/thanksgiving-travel-weather/index.html' target='_blank'>Don't get trapped by bad Thanksgiving weather: Top tips</a></p>
<p class="cnn_storypgraphtxt cnn_storypgraph28">Heavy winds at all three New York-area airports -- LaGuardia, John F. Kennedy and Newark-Liberty -- resulted in delays of 30 minutes to an hour, according to the <a href='http://www.fly.faa.gov/flyfaa/usmap.jsp' target='_blank'>Federal Aviation Administration</a>. Departure delays from Philadelphia International Airport averaged nearly two hours.</p>
<p class="cnn_storypgraphtxt cnn_storypgraph29">American Airlines' Kent Powell reported three cancellations, none of them related to the weather.</p>
<p class="cnn_storypgraphtxt cnn_storypgraph30">At US Airways, Todd Lehmacher called the impact of the weather "pretty minimal, at this point," with six weather-related cancellations and an on-time performance of about 67%. The impact was more pronounced at US Airways Express, which tallied 56 cancellations because of the weather, he said.</p>
<p class="cnn_storypgraphtxt cnn_storypgraph31">"The real story is people are getting to their destinations, albeit a little delayed in some but not all cases," he said.</p>
<p class="cnn_storypgraphtxt cnn_storypgraph32"><a href='http://www.cnn.com/interactive/2013/11/travel/atl24/' target='_blank'>#ATL24: A day in the life of the world's busiest airport</a></p>
<p class="cnn_storypgraphtxt cnn_storypgraph33">Amtrak reported no major delays systemwide. Using the <a href='http://www.amtrak.com/ccurl/199/45/Some%20Amtrak%20Seats%20Still%20Available%20for%20Thanksgiving%20Travel%20in%20Northeast%20ATK-13-148.pdf ' target='_blank'>weather as a marketing tool</a>, the nation's rail system was adding seats on some routes.</p>
<p class="cnn_storypgraphtxt cnn_storypgraph34">"Rail travel remains one of the most reliable and comfortable transportation options, especially in weather conditions that negatively impact other modes," Amtrak said.</p>
<p class="cnn_storypgraphtxt cnn_storypgraph35">There may be something to that.</p>
<p class="cnn_storypgraphtxt cnn_storypgraph36">"QUIET CAR. Window seat. Polite seatmate. I have hit the Amtrak travel trifecta. #blessed,"<a href='https://twitter.com/ellievhall/status/405605508989861888' target='_blank'> Ellie Hall tweeted </a>early Wednesday.</p>
<p class="cnn_storypgraphtxt cnn_storypgraph37"><a href='http://www.cnn.com/2013/11/26/health/healthy-eating-traveling-holidays/index.html' target='_blank'>5 healthy eating tips for holiday travelers</a></p>
<p class="cnn_storypgraphtxt cnn_storypgraph39"><strong>... </strong><strong>a</strong><strong>nd automobiles</strong></p>
<p class="cnn_storypgraphtxt cnn_storypgraph40">Snow blanketed parts of the Midwest, where crews scrambled to clear roads. The storm was blamed for scores of accidents.</p>
<p class="cnn_storypgraphtxt cnn_storypgraph41">Up to a foot of snow fell in parts of Pennsylvania, and it was falling from upstate New York into Canada, where more than a foot was possible. Snow also continued to fly in the central Appalachians and around the Great Lakes as cold air moved in and produced lake-effect snows.</p>
<p class="cnn_storypgraphtxt cnn_storypgraph42">Road conditions were not great in much of the Northeast.</p>
<p class="cnn_storypgraphtxt cnn_storypgraph43">"It's sleet; it's rain; it's 31 degrees. It's ugly out there," CNN meteorologist Chad Myers said.</p>
<p class="cnn_storypgraphtxt cnn_storypgraph44">Still, a call for anecdotes elicited a number of comments, but no horror stories.</p>
<p class="cnn_storypgraphtxt cnn_storypgraph45">"Well, since the forecast said we would be hitting an ice storm on our way, we ended up leaving the night before we had planned and took an alternate route," Sarah Martini said in an e-mail. "This morning we took smaller roads to avoid DC traffic and have made great progress! We managed to avoid bad weather and traffic and are getting close to getting to Pittsburgh from NC!"</p>
<p class="cnn_storypgraphtxt cnn_storypgraph46">The National Highway Traffic Safety Administration said that 416 motorists died during Thanksgiving weekend last year, that 60% of the dead had not been wearing seat belts and that 42% of the accidents involved a drunken driver.</p>
<p class="cnn_storypgraphtxt cnn_storypgraph47">Last week, 12 people died, most of them in car crashes, when one of the fronts making up the current storm iced roads from the Rockies to Texas and Oklahoma. More than 100 vehicles ended up in wrecks.</p>
<p class="cnn_storypgraphtxt cnn_storypgraph48">"I get on the highway, and the next thing I know I'm spinning," said Seqret Watson, among the dozens of drivers in Northwest Arkansas sent sliding when their cars hit icy bridges and roads.</p>
<p class="cnn_storypgraphtxt cnn_storypgraph49">"I try to grab my wheel and then I just hit the wall. Just jumped out to make sure my kids were OK," Watson told affiliate KFSM.</p>
<p class="cnn_storypgraphtxt cnn_storypgraph50">The Peterson family had initially planned to drive from Northern Virginia to Massachusetts. But after seeing the forecast, they booked seats on a flight at the last minute.</p>
<p class="cnn_storypgraphtxt cnn_storypgraph51">"It was a small fortune," Jennifer Peterson told CNN affiliate WUSA. "We could've gone to the Bahamas for what we paid!"</p>
<p class="cnn_storypgraphtxt cnn_storypgraph52"><a href='http://money.cnn.com/2013/11/26/pf/thanksgiving-airline-travel/index.html'>Storm prompts airlines to relax travel policies</a></p>
<script type="text/javascript">if(typeof CNN.expElements==='object'){CNN.expElements.init();}</script>
<p class="cnn_strycbftrtxt">CNN's Jason Carroll, Ben Brumfield, Dave Hennen, Aaron Cooper, Alexandra Field, Shannon Travis and Greg Botelho contributed to this report.</p>
<!--endclickprintinclude--><!--google_ad_section_end-->
<!--no partner-->
<div class="cnn_stryshrwdgtbtm">
<div id="cnn_sharebar2">
<div class="c_sharebar_cntr c_sharebar_loading">
<div class="cnn_stryswdgtbtm1">
<div class="cnn_stryswdgtbtm1a"><a href="http://www.cnn.com/2013/11/27/travel/weather-thanksgiving/index.html#disqus_thread">0</a></div>
<div class="cnn_stryswdgtbtm1b"><a href="#cnn-disqus-area">Comments »</a></div>
</div><!-- /cnn_stryswdgtbtm1 -->
<div class="cnn_stryswdgtbtm2">
<div class="c_sharebtmcol1">
<div class="c_sharetitle">SHARE THIS</div>
<div class="c_sharebtns">
<ul>
<li class="c_sharebtn c_sharebtnfb"><a href="javascript:void(0);" onclick="cnnsocial.share.click('cnn_sharebar2', 'facebook');"></a></li>
<li class="c_sharebtn c_sharebtntwtr"><a href="javascript:void(0);" onclick="cnnsocial.share.click('cnn_sharebar2', 'twitter');"></a></li>
<li class="c_sharebtn c_sharebtngplus"><a href="javascript:void(0);" onclick="cnnsocial.share.click('cnn_sharebar2', 'googleplus');"></a></li>
<li class="c_sharebtn c_sharebtnlnkn"><a href="javascript:void(0);" onclick="cnnsocial.share.click('cnn_sharebar2', 'linkedin');"></a></li>
</ul>
<div class="cnn_clear"></div>
</div>
</div><!-- /c_sharebtmcol1 -->
<div class="c_sharebtmdiv"></div>
<div class="c_sharebtmcol2">
<div class="fb-like" data-send="false" data-layout="box_count" data-width="90" data-show-faces="false" data-action="recommend" href="http://www.cnn.com/2013/11/27/travel/weather-thanksgiving/index.html"></div>
</div><!-- /c_sharebtmcol2 -->
<div class="c_sharebtmdiv"></div>
<div class="c_shareweb c_sharebtmcol3">
<ul>
<li class="cnn_sswdgtweb1"><a href="#" onclick="if(typeof CleanPrintPrintHtml!='undefined' && CleanPrintPrintHtml) CleanPrintPrintHtml(); else window.print(); return false;">Print</a></li>
<li class="cnn_sswdgtweb2"><a href="#" onclick="return(ET());">Email</a></li>
<li class="cnn_sswdgtweb3"><a href="javascript:void(0);" onclick="$j('#cnn_sharebarmore2').toggle();">More sharing</a>
<div id="cnn_sharebarmore2" class="sharebar_othersites sharebar_othersitesl" style="display:none;">
<div class="shareProp">
<div class="sharebutton_reddit" title="Reddit"><a href="javascript:void(0);" onclick="cnnsocial.share.click('cnn_sharebar2', 'reddit');">Reddit</a></div>
</div>
<div class="shareProp">
<div class="sharebutton_stumbleupon" title="StumbleUpon"><a href="javascript:void(0);" onclick="cnnsocial.share.click('cnn_sharebar2', 'stumbleupon');">StumbleUpon</a></div>
</div>
<div class="shareProp">
<div class="sharebutton_delicious" title="Delicious"><a href="javascript:void(0);" onclick="cnnsocial.share.click('cnn_sharebar2', 'delicious');">Delicious</a></div>
</div>
</div>
</li>
</ul>
</div><!-- /c_sharebtmcol3 -->
<div class="cnn_clear"></div>
</div>
<div class="cnn_clear"></div>
</div>
</div>
</div>
<script>
/* push in config for this share instance */
cnn_shareconfig.push({
"id" : "cnn_sharebar2",
"url" : "http://www.cnn.com/2013/11/27/travel/weather-thanksgiving/index.html",
"title" : "After storm, forecasters see smooth sailing for Thanksgiving"
});
</script>
<div class="cnn_strybtmcntnt">
<div class="cnn_divline"></div>
<div class="cnn_divline"></div>
<div id="outbrainArticle" data-ob-template="cnnedition" class="OBR"></div>
<!-- ADSPACE: travel/mmst/adlinks.607x95 -->
<!-- CALLOUT|http://ads.cnn.com/html.ng/site=cnn_international&cnn_intl_pagetype=mmst&cnn_intl_position=607x95_adlinks&cnn_intl_rollup=travel&page.allowcompete=no¶ms.styles=fs|CALLOUT -->
<div id="ad-83b4e90e9aec524e" align="center" style="padding: 0; margin: 0; border: 0;"></div>
<script type="text/javascript">
cnnad_createAd("83b4e90e9aec524e","http://ads.cnn.com/html.ng/site=cnn_international&cnn_intl_pagetype=mmst&cnn_intl_position=607x95_adlinks&cnn_intl_rollup=travel&page.allowcompete=no¶ms.styles=fs","95","607");
cnnad_registerSpace("83b4e90e9aec524e","607","95");
</script>
<!-- ADSPACE-END -->
<div class="cnn_divline cnn_divln3pxblck" style="margin-top:20px;" id="cnn-disqus-area"></div>
<div id="disqus_thread"></div>
<script src="http://cnn.disqus.com/embed.js"></script>
</div>
</div>
<div class="cnn_strycntntrgt">
<div>
<span id="medium_rectangle" class="_fwph">
<form id="_fw_form_medium_rectangle" style="display:none">
<input type="hidden" name="_fw_input_medium_rectangle" id="_fw_input_medium_rectangle" value="w=336&h=280&envp=g_js&sflg=-nrpl&cd=336,280|300,250;">
</form>
<span id="_fw_container_medium_rectangle" class="_fwac">
<div><!-- CALLOUT|http://ads.cnn.com/html.ng/site=cnn_international&cnn_intl_pagetype=mmst&cnn_intl_position=336x850_rgt&cnn_intl_rollup=travel&page.allowcompete=no¶ms.styles=fs|CALLOUT -->
<!-- ADSPACE: travel/mmst/rgt.336x850 -->
<div id="ad-a4c44accce6a32e4" align="center" style="padding: 0; margin: 0; border: 0;"></div>
<script type="text/javascript">
cnnad_createAd("a4c44accce6a32e4","http://ads.cnn.com/html.ng/site=cnn_international&cnn_intl_pagetype=mmst&cnn_intl_position=336x850_rgt&cnn_intl_rollup=travel&page.allowcompete=no¶ms.styles=fs","850","336", null, "");
cnnad_registerSpace("a4c44accce6a32e4","336","850");
</script>
<!-- ADSPACE-END --></div>
<div class="cnn_adtitle"><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 class="cnn_divline cnn_divlscrct"></div>
</span>
</span>
</div>
<div class="cnn_strycrcntr">
<div class="cnn_stryspcvh6">
<div class="cnn_stryspcvh2">Part of complete coverage on </div>
<div class="cnn_stryspcvh3">Severe weather</div>
</div>
<div class="cnn_stryspcvbx"><div class="cnn_stryspcvbxcntr"><div class="cnn_stryscbx1">
<div><a href="/video/data/2.0/video/weather/2014/04/24/tornado-facts-orig-cfb.cnn.html?iid=article_sidebar">10 things to know about tornadoes</a></div>
<div class="cnn_stryscbx2">
April 26, 2014 -- Updated 1358 GMT (2158 HKT)
</div>
<div class="cnn_stryscbx3">
<a href="/video/data/2.0/video/weather/2014/04/24/tornado-facts-orig-cfb.cnn.html?iid=article_sidebar"><img src="http://i2.cdn.turner.com/cnn/dam/assets/140424170721-tornado-facts-orig-cfb-00000603-video-tease.jpg" alt="" border="0" height="68" width="120"/></a>
</div>
<div class="cnn_stryscbx4">Here are 10 facts about one of nature's most powerful forces.</div>
<div class="cnn_clear"></div>
</div></div></div>
<div class="cnn_stryspcvbx"><div class="cnn_stryspcvbxcntr"><div class="cnn_stryscbx1">
<div><a href="/2013/03/05/world/gallery/weather-around-world/index.html?iid=article_sidebar">Photos: Weather around the world</a></div>
<div class="cnn_stryscbx2">
August 7, 2013 -- Updated 1446 GMT (2246 HKT)
</div>
<div class="cnn_stryscbx3">
<a href="/2013/03/05/world/gallery/weather-around-world/index.html?iid=article_sidebar"><img src="http://i2.cdn.turner.com/cnn/dam/assets/130319084810-02-weather-0319-video-tease.jpg" alt="" border="0" height="68" width="120"/></a>
</div>
<div class="cnn_stryscbx4">Get a glimpse of the weather events happening around the world by clicking through our photo gallery.</div>
<div class="cnn_clear"></div>
</div></div></div>
<div class="cnn_stryspcvbx"><div class="cnn_stryspcvbxcntr"><div class="cnn_stryscbx1">
<div><a href="/2012/10/29/tech/mobile/sandy-charge-devices/index.html?iid=article_sidebar">Keep your phone charged in a power outage</a></div>
<div class="cnn_stryscbx2">
February 9, 2013 -- Updated 1057 GMT (1857 HKT)
</div>
<div class="cnn_stryscbx3">
<a href="/2012/10/29/tech/mobile/sandy-charge-devices/index.html?iid=article_sidebar"><img src="http://i2.cdn.turner.com/cnn/dam/assets/111018044407-connected-cellphones-video-tease.jpg" alt="" border="0" height="68" width="120"/></a>
</div>
<div class="cnn_stryscbx4">In our increasingly digital world, a mobile phone or other portable device is often a one-stop communication device.</div>
<div class="cnn_clear"></div>
</div></div></div>
<div class="cnn_stryspcvbx"><div class="cnn_stryspcvbxcntr"><div class="cnn_stryscbx1">
<div><a href="/2012/08/29/health/hurricane-power-outage/index.html?iid=article_sidebar">Staying safe when the lights go out</a></div>
<div class="cnn_stryscbx2">
July 3, 2014 -- Updated 2339 GMT (0739 HKT)
</div>
<div class="cnn_stryscbx3">
<a href="/2012/08/29/health/hurricane-power-outage/index.html?iid=article_sidebar"><img src="http://i2.cdn.turner.com/cnn/dam/assets/121029111906-hurricane-sandy-supplies-flashlight-video-tease.jpg" alt="" border="0" height="68" width="120"/></a>
</div>
<div class="cnn_stryscbx4">Water jugs and batteries are not the only things to consider when extreme weather threatens.</div>
<div class="cnn_clear"></div>
</div></div></div>
<div class="cnn_stryspcvbx"><div class="cnn_stryspcvbxcntr"><div class="cnn_stryscbx1">
<div><a href="http://eatocracy.cnn.com/emergency/?iid=article_sidebar">Food in a weather emergency</a></div>
<div class="cnn_stryscbx2">
</div>
<div class="cnn_stryscbx3">
<a href="http://eatocracy.cnn.com/emergency/?iid=article_sidebar"><img src="http://i2.cdn.turner.com/cnn/dam/assets/120827060017-can-opener-video-tease.jpg" alt="can opener" border="0" height="68" width="120"/></a>
</div>
<div class="cnn_stryscbx4">All you need to know about keeping your food safe to eat and what to have on hand in the event of a weather emergency.</div>
<div class="cnn_clear"></div>
</div></div></div>
<div class="cnn_stryspcvbx"><div class="cnn_stryspcvbxcntr"><div class="cnn_stryscbx1">
<div><a href="/2013/04/12/tech/mobile/tornado-apps/index.html?iid=article_sidebar">7 mobile tools to help you survive tornado season</a></div>
<div class="cnn_stryscbx2">
April 3, 2014 -- Updated 1453 GMT (2253 HKT)
</div>
<div class="cnn_stryscbx3">
<a href="/2013/04/12/tech/mobile/tornado-apps/index.html?iid=article_sidebar"><img src="http://i2.cdn.turner.com/cnn/dam/assets/130411155143-red-cross-tornado-app-video-tease.jpg" alt="" border="0" height="68" width="120"/></a>
</div>
<div class="cnn_stryscbx4">Getting the latest warnings when tornadoes are headed your way and knowing what to do before, during and after one hits are all key to staying safe. A handful of apps can help you stay on top of impending dangerous weather. </div>
<div class="cnn_clear"></div>
</div></div></div>
<div class="cnn_stryspcvbx"><div class="cnn_stryspcvbxcntr"><div class="cnn_stryscbx1">
<div><a href="/2013/05/25/us/tornado-safety/index.html?iid=article_sidebar">A tornado's heading your way: Now what?</a></div>
<div class="cnn_stryscbx2">
May 30, 2013 -- Updated 1531 GMT (2331 HKT)
</div>
<div class="cnn_stryscbx3">
<a href="/2013/05/25/us/tornado-safety/index.html?iid=article_sidebar"><img src="http://i2.cdn.turner.com/cnn/dam/assets/130520093610-09-tornado-0520-video-tease.jpg" alt="" border="0" height="68" width="120"/></a>
</div>
<div class="cnn_stryscbx4">You've just that heard a tornado is headed directly toward you. You don't have a safe room, and you're not near a shelter. Do you hunker down and hope for the best or do you flee?</div>
<div class="cnn_clear"></div>
</div></div></div>
<div class="cnn_stryspcvbx"><div class="cnn_stryspcvbxcntr"><div class="cnn_stryscbx1">
<div><a href="/2013/01/30/us/deadliest-tornadoes/index.html?iid=article_sidebar">The 10 deadliest U.S. tornadoes on record</a></div>
<div class="cnn_stryscbx2">
April 27, 2014 -- Updated 1531 GMT (2331 HKT)
</div>
<div class="cnn_stryscbx3">
<a href="/2013/01/30/us/deadliest-tornadoes/index.html?iid=article_sidebar"><img src="http://i2.cdn.turner.com/cnn/dam/assets/130130130421-tri-state-tornado-1925-video-tease.jpg" alt="" border="0" height="68" width="120"/></a>
</div>
<div class="cnn_stryscbx4">Here are the 10 deadliest tornadoes to touch down in the United States, according to the National Oceanic and Atmospheric Administration: </div>
<div class="cnn_clear"></div>
</div></div></div>
<div class="cnn_stryspcvbx"><div class="cnn_stryspcvbxcntr"><div class="cnn_stryscbx1">
<div><a href="/2013/07/17/us/us-lightning-strikes/index.html?iid=article_sidebar">In electrical storms, few safe places</a></div>
<div class="cnn_stryscbx2">
July 17, 2013 -- Updated 2307 GMT (0707 HKT)
</div>
<div class="cnn_stryscbx3">
<a href="/2013/07/17/us/us-lightning-strikes/index.html?iid=article_sidebar"><img src="http://i2.cdn.turner.com/cnn/dam/assets/130711090816-florida-lightning-0709-irpt-video-tease.jpg" alt="" border="0" height="68" width="120"/></a>
</div>
<div class="cnn_stryscbx4">Weather experts agree: When lightning strikes, it's best to go indoors.</div>
<div class="cnn_clear"></div>
</div></div></div>
<div class="cnn_stryspcvbx"><div class="cnn_stryspcvbxcntr"><div class="cnn_stryscbx1">
<div><a href="/2013/05/20/us/tornadoes-fast-facts/index.html?iid=article_sidebar">What to know about tornadoes</a></div>
<div class="cnn_stryscbx2">
April 2, 2014 -- Updated 2011 GMT (0411 HKT)
</div>
<div class="cnn_stryscbx3">
<a href="/2013/05/20/us/tornadoes-fast-facts/index.html?iid=article_sidebar"><img src="http://i2.cdn.turner.com/cnn/dam/assets/130521094054-irpt-tornado-stormchaser-oklahoma-video-tease.jpg" alt="" border="0" height="68" width="120"/></a>
</div>
<div class="cnn_stryscbx4"> A tornado is a funnel-shaped cloud that forms under thunderclouds and contains rapidly rotating air.</div>
<div class="cnn_clear"></div>
</div></div></div>
<div class="cnn_divline cnn_divlscrc"></div>
<div class="cnn_divline cnn_divlscrc"></div>
<style>
.cnn_strycrcntrnwsp .cnn_mtpmore { padding:10px 0px 1px 0px; }
.cnn_stryccnwsp2 .cnn_stryccnwsp3 { width:100% }
</style>
<div class="cnn_strycrcntrpad" style="padding-bottom:17px;">
<div class="cnn_strycrcntrnwsp">
<h4><a href="/mostpopular">Most Popular</a></h4>
<div class="cnn_clear"></div>
<div class="cnn_stryccnwsp1">Today's five most popular stories</div>
<div class="cnn_divline"></div>
<div class="cnn_stryccnwsp2">
<div class="cnn_stryccnwsp3">
<h2>
<a href="/2014/07/22/world/europe/ukraine-malaysia-airlines-crash/index.html">MH17 crash: Did Russia pull the trigger? Ukraine says yes</a>
</h2>
</div>
<div class="cnn_clear"></div>
</div>
<div class="cnn_divline"></div>
<div class="cnn_stryccnwsp2">
<div class="cnn_stryccnwsp3">
<h2>
<a href="/2014/07/22/world/asia/giant-insect-china/index.html">World's largest aquatic insect specimen found in China</a>
</h2>
</div>
<div class="cnn_clear"></div>
</div>
<div class="cnn_divline"></div>
<div class="cnn_stryccnwsp2">
<div class="cnn_stryccnwsp3">
<h2>
<a href="/2014/07/22/showbiz/celebrity-news-gossip/robert-downey-jr-highest-paid-actor-forbes/index.html">Robert Downey Jr.: Hollywood's highest-paid actor (again)</a>
</h2>
</div>
<div class="cnn_clear"></div>
</div>
<div class="cnn_divline"></div>
<div class="cnn_stryccnwsp2">
<div class="cnn_stryccnwsp3">
<h2>
<a href="/2014/07/22/world/europe/mh17-calehr-family-sons-killed-mother-regret/index.html">Mother's regret over young MH17 victim's plane crash fear</a>
</h2>
</div>
<div class="cnn_clear"></div>
</div>
<div class="cnn_divline"></div>
<div class="cnn_stryccnwsp2">
<div class="cnn_stryccnwsp3">
<h2>
<a href="/2014/07/22/world/meast/mideast-crisis/index.html">Talk of peace doesn't slow flow of blood, rockets in Gaza and Israel</a>
</h2>
</div>
<div class="cnn_clear"></div>
</div>
<div class="cnn_divline"></div>
<div class="cnn_clear"></div>
<div class="cnn_mtpmore"><a class="cnn_mtpmorebtn" href="/mostpopular"><img border="0" src="http://i.cdn.turner.com/cnn/.element/img/3.0/1px.gif" alt="More"/></a></div>
</div>
</div>
<div class="cnn_divline cnn_divlscrc"></div>
<div style="padding-bottom: 17px;padding-top:17px;" class="cnn_strycrcntrpad">
<div id="outbrainArticle2" data-ob-template="cnnedition" class="OBR"></div>
<div id="outbrainArticle3" data-ob-template="cnnedition" class="OBR"></div>
<div id="outbrainArticle4" data-ob-template="cnnedition" class="OBR"></div>
<script type="text/javascript">
var cnn_oburlStr = location.pathname + '';
cnn_oburlStr = (cnn_oburlStr.indexOf('?') > -1) ? cnn_oburlStr.substr(0, cnn_oburlStr.indexOf('?')) : cnn_oburlStr;
var OB_permalink= 'http://edition.cnn.com' + cnn_oburlStr;
OB_elements = [
{
containerId : "outbrainArticle",
permalink : OB_permalink,
widgetId : "AR_1"
},{
containerId : "outbrainArticle2",
permalink : OB_permalink,
widgetId : "VR_1"
},{
containerId : "outbrainArticle3",
permalink : OB_permalink,
widgetId : "SB_1"
},{
containerId : "outbrainArticle4",
permalink : OB_permalink,
widgetId : "SB_2"
}
];
(function() {
var ob = document.createElement("script");ob.type = "text/javascript"; ob.async = true;
ob.src = "http://widgets.outbrain.com/outbrain.js";
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ob, s);
})();
</script>
</div>
<style>
.OB_SB_1, .OB_SB_2 { padding:0px; }
#outbrain_container_1_stripBox .strip-like, #outbrain_container_2_stripBox .strip-like { font-size:18px; }
#ob_strip_container_rel_1_stripBox { }
#ob_strip_container_rel_1_stripBox .item-container, #ob_strip_container_rel_2_stripBox .item-container { padding-top:8px;border-top:1px solid #E5E5E5; }
.ob_box_cont ul li { display:block; height:60px; list-style-type:none; padding-top:8px; padding-bottom:7px; position:relative; width:100%; border-top:1px solid #E5E5E5}
.ob_box_cont ul li .ob-rec-link-img {float:left;}
.ob_box_cont ul li .ob-rec-link-img a {display: block; float: left; height: 50px; padding: 3px; position: relative; width: 90px;}
.ob_box_cont ul li .ob-text-content {padding-left:105px;}
.ob_box_cont ul li .ob-text-content a {font:bold 12px/15px arial !important;}
.ob_box_cont ul li .ob-rec-link-img a .ob_video {position:absolute; top:5px; left:5px;}
</style>
<div class="cnn_divline"></div>
<div class="cnn_strycrcntrad">
<div><!-- CALLOUT|http://ads.cnn.com/html.ng/site=cnn_international&cnn_intl_pagetype=mmst&cnn_intl_position=300x150_rgt&cnn_intl_rollup=travel&page.allowcompete=no¶ms.styles=fs|CALLOUT -->
<!-- ADSPACE: travel/mmst/rgt.300x150 -->
<div id="ad-844e5165757763fc" align="center" style="padding: 0; margin: 0; border: 0;"></div>
<script type="text/javascript">
cnnad_createAd("844e5165757763fc","http://ads.cnn.com/html.ng/site=cnn_international&cnn_intl_pagetype=mmst&cnn_intl_position=300x150_rgt&cnn_intl_rollup=travel&page.allowcompete=no¶ms.styles=fs","150","300", null, "");
cnnad_registerSpace("844e5165757763fc","300","150");
</script>
<!-- ADSPACE-END --></div>
<div class="cnn_adtitle"><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_divline"></div>
<div class="cnn_divline cnn_divlscrc"></div>
<div style="padding:0 0 0 6px;">
<!-- ADSPACE: travel/mmst/adlinks.336x280 -->
<!-- CALLOUT|http://ads.cnn.com/html.ng/site=cnn_international&cnn_intl_pagetype=mmst&cnn_intl_position=336x280_adlinks&cnn_intl_rollup=travel&page.allowcompete=no¶ms.styles=fs|CALLOUT -->
<div id="ad-693a83dfad80aeeb" align="center" style="padding: 0; margin: 0; border: 0;"></div>
<script type="text/javascript">
cnnad_createAd("693a83dfad80aeeb","http://ads.cnn.com/html.ng/site=cnn_international&cnn_intl_pagetype=mmst&cnn_intl_position=336x280_adlinks&cnn_intl_rollup=travel&page.allowcompete=no¶ms.styles=fs","280","336");
cnnad_registerSpace("693a83dfad80aeeb","336","280");
</script>
<!-- ADSPACE-END -->
</div>
</div>
</div><div class="cnn_clear"></div>
</div>
</div></div></div>
<div id="fb-root"></div>
<!-- bypass ws--> <div align="center"> <!-- pulling static footer --> <div id="cnn_ftrcntnt">
<div id="cnn_ftrcntntinner" class="clearfix">
<div class="cnn_ftrdivl1"></div>
<div id="cnnLWPWeather" style="visibility: hidden">
<p><b>Loading weather data ...</b></p>
</div>
<div id="ftr-search">
<form method="get" action="/search/" onsubmit="return cnnFootSearch(this);">
<div class="ftr-search-datacntr">
<div class="ftr-search-tfield"><input type="text" name="query" size="12" maxlength="100" value="" id="ftr-search-box"></div>
<div class="ftr-search-sicon"><input type="image" src="http://z.cdn.turner.com/cnn/.element/img/3.0/search/search_btn_footer.gif" width="55" height="21" alt=""></div>
</div>
<input type="hidden" name="cnnFtrSrchType" id="cnnFtrSrchType" value="mixed">
<div class="cnn_ftrggle"><img src="http://z.cdn.turner.com/cnn/.element/img/3.0/global/footer/pngs/footer_google.png" width="88" height="13" alt="" border="0" class="cnn_ie6png"></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="/WORLD/">World</a> | <a href="/US/">U.S.</a> | <a href="/AFRICA/">Africa</a> | <a href="/ASIA/">Asia</a> | <a href="/EUROPE/">Europe</a> | <a href="/LATINAMERICA/">Latin America</a> | <a href="/MIDDLEEAST/">Middle East</a> | <a href="/BUSINESS/">Business</a> | <a href="/SPORT/">World Sport</a> | <a href="/SHOWBIZ/">Entertainment</a> | <a href="/TECH/">Tech</a> | <a href="/TRAVEL/">Travel</a> | <a href="http://www.ireport.com/?cnn=yes">iReport</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="http://edition.cnn.com/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> | <a href="http://partners.cnn.com/">CNN Partner Hotels</a></div>
</div>
<div class="cnn_ftrdivl2"></div>
<div class="cnn_ftrlnggcntr">
<div><a href="/espanol/" hreflang="es">CNN en ESPAÑOL</a> | <a href="http://www.cnnchile.com" hreflang="es">CNN Chile</a> | <a href="http://www.cnnmexico.com" hreflang="es">CNN México</a> | <a href="http://arabic.cnn.com/" hreflang="ar" title="CNN Arabic">العربية</a> | <a href="http://www.cnn.co.jp/" hreflang="jp" title="CNN Japan">日本語</a> | <a href="http://www.cnnturk.com/" class="cnn_ie6png" hreflang="tr" title="CNN Turkey">Türkçe</a></div>
</div>
<div class="cnn_ftrlgcpy">
<div><img src="http://z.cdn.turner.com/cnn/.e/img/3.0/global/footer/pngs/footer_cnn_logo.png" width="23" height="11" alt="" border="0" class="cnn_ie6png"/>© 2014 Cable News Network. <a href="http://www.turner.com/" class="cnn_ftrtbslink">Turner Broadcasting System, Inc.</a> All Rights Reserved.</div>
</div>
<div class="cnn_ftrlgcpyBot"><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/" title="">Ad choices</a><img src="http://z.cdn.turner.com/cnn/.e/img/3.0/global/misc/logo_ad_choices_footer.png" width="12" height="12" alt="" border="0" style="margin:0 0 0 4px;" class="cnn_ie6png"/> | <a href="http://www.cnnmediainfo.com/" rel="nofollow">Advertise with us</a> | <a href="/intlsyndication/">License our content</a> | <a href="/about/">About us</a> | <a href="/feedback/" rel="nofollow">Contact us</a> | <a href="http://www.turner.com/careers/" rel="nofollow">Work for us</a> | <a href="/help/" rel="nofollow">Help</a></div>
<div class="cnn_ftrlnggcntrBot"><a href="/CNNI/">CNN TV</a> | <a href="/HLN/">HLN</a> | <a href="http://transcripts.cnn.com/TRANSCRIPTS/">Transcripts</a></div>
<div class="cnn_clear"></div>
</div>
</div>
</div>
<!-- static footer ends here --> <script src="http://z.cdn.turner.com/cnn/tmpl_asset/static/intl_global/485/js/globallib.intl-min.js"></script> <script> var cnn_edtnswtchver="edition"; msQueueManager.init('requestFrame',ms_blankURL); if(ms_isLoggedIn()){ CNN_setCookie('CNN_member',true,854400,'/',document.domain); } </script>
<!--jsmd-->
<script src="http://z.cdn.turner.com/cnn/.e/js/libs/jsmd-55.min.js"></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 CNN_CB, cnnsocial, cnnzite_mod, sectionName */
/* configure apis to load and specify their callbacks */
cnnsocial.setapiconfig([
{
'site' : 'facebook',
'success' : function() {
/* trigger connect-cnnsocial.js calls */
window.cnn_fbAsyncInit();
}