summaryrefslogtreecommitdiff
path: root/scratch/temp1.html
blob: ceb1dd21b4eb5eb5d7882c670e7f4039d77f4655 (plain)
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
<!--[if IE 5]> Vignette StoryServer 5.0 Thu Feb 09 10:10:08 2017 <![endif]-->
    
	 <!DOCTYPE html>
<html>
<head profile="http://dublincore.org/documents/dcq-html/">
	<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
	<meta charset="UTF-8">
    <meta name="pagetype" content="homepage" />
	<meta name="robots" content="noarchive,noodp">
	<title>Fox News - Breaking News Updates | Latest News Headlines | Photos &amp; News Videos</title>
	<meta name="description" content="Breaking News, Latest News and Current News from FOXNews.com. Breaking news and video. Latest Current News: U.S., World, Entertainment, Health, Business, Technology, Politics, Sports.">
	<meta name="keywords" content="news, breaking news, latest news, current news, world news, national news">


	<!-- Favicons -->
	<link rel="icon" href="//global.fncstatic.com/static/v/fn-hp/img/favicon.png" type="image/png">
	<link rel="shortcut icon" href="//global.fncstatic.com/static/v/fn-hp/img/favicon.ico">
	<link rel="apple-touch-icon" href="/apple-touch-icon.png">

	<!-- Schema -->
	<link rel="schema.dc" href="//purl.org/dc/elements/1.1/">
	<link rel="schema.dcterms" href="//purl.org/dc/terms/">
	<link rel="schema.prism" href="//prismstandard.org/namespaces/basic/2.1/">
	<link rel="schema.iptc" href="//iptc.org/std/nar/2006-10-01/">

	<!-- Dublin Core -->
	<meta name="dc.title" lang="en" content="Fox News - Breaking News Updates | Latest News Headlines | Photos &amp; News Videos">
	<meta name="dc.description" content="Breaking News, Latest News and Current News from FOXNews.com. Breaking news and video. Latest Current News: U.S., World, Entertainment, Health, Business, Technology, Politics, Sports.">
	<meta name="dc.language" scheme="dcterms.RFC4646" content="en-US">
	<meta name="dc.publisher" content="FOX News">
	<meta name="dc.date" content="2017/02/09">
	<meta name="dc.format" scheme="dcterms.IMT" content="text/html">
	<meta name="dc.type" scheme="dcterms.DCMIType" content="Collection">
	<meta name="dc.subject" content="news, breaking news, latest news, current news, world news, national news">
	<meta name="dcterms.abstract" content="Breaking News, Latest News and Current News from FOXNews.com. Breaking news and video. Latest Current News: U.S., World, Entertainment, Health, Business, Technology, Politics, Sports.">
	<meta name="dcterms.created" scheme="dcterms.ISO8601" content="2017-02-09 10:10:09 AM">
	<meta name="dcterms.modified" scheme="dcterms.ISO8601" content="2017-02-09 10:10:09 AM">

 <!-- Prism -->
	<meta name="prism.genre" content="homePage">
	<meta name="prism.aggregationType" content="root">
	
	<meta name="prism.channel" content="fnc" /> 
	<meta name="prism.section" content="root" /> 
	<meta name="prism.subsection1" content="" /> 
	<meta name="prism.subsection2" content="" /> 
	<meta name="prism.subsection3" content="" /> 
	<meta name="prism.subsection4" content="" />
	
	<!-- Canonical -->
	<link rel="canonical" href="http://www.foxnews.com">

	<!-- Open Graph -->
	<meta property="og:title" content="Fox News">
	<meta property="og:description" content="Fair & Balanced">
	<meta property="og:type" content="website">
	<meta property="og:image" content="http://global.fncstatic.com/static/v/all/img/og/og-fn-foxnews.jpg">
	<meta property="og:url" content="http://www.foxnews.com">
	<meta property="og:site_name" content="Fox News">
	<meta property="twitter:account_id" content="1367531">
    <meta property="vr:canonical" content="http://www.foxnews.com/home.html"/>

	<!-- Twitter -->
	<meta name="twitter:card" content="app">
	<meta name="twitter:app:id:iphone" content="367623543">
	<meta name="twitter:app:url:iphone" content="//itunes.apple.com/us/app/fox-news/id367623543?mt=8">
	<meta name="twitter:app:id:ipad" content="436484582">
	<meta name="twitter:app:url:ipad" content="//itunes.apple.com/us/app/fox-news-for-ipad/id436484582?mt=8">
	<meta name="twitter:app:id:googleplay" content="com.foxnews.android">
	<meta name="twitter:app:url:googleplay" content="//play.google.com/store/apps/details?id=com.foxnews.android">

	<!-- Android -->
	<link rel="alternate" type="application/rss+xml" title="FOX News RSS" href="//feeds.feedburner.com/foxnews/latest">
	<link rel="alternate" href="android-app://com.foxnews.android/http/www.foxnews.com/">

	<!-- CSS -->
 <link rel="stylesheet" type="text/css" href="//global.fncstatic.com/static/v/fn-hp/css/ag.home.css?20161228T145900" />


	<!-- JS -->
	<script type="text/javascript" src="//global.fncstatic.com/static/v/all/js/ag.jquery.js?20161228T145900"></script>
	<script type="text/javascript" src="//global.fncstatic.com/static/isa/core.js?20161228T145900"></script>
	<script type="text/javascript" src="//global.fncstatic.com/static/v/fn-hp/js/ag.hp.new.js?20161228T145900"></script>

	<!--[if lt IE 9]>
	<script src="//global.fncstatic.com/static/v/all/js/html5shiv.js"></script>
	<link rel="stylesheet" type="text/css" href="//global.fncstatic.com/static/v/fn-hp/css/ie.css">
	<![endif]-->
	
	
	
	
	
	
	
	
	
	
	
	<script> var fn_root_preview = false; </script> 
	</head>
<body class="home">
	<script type="application/ld+json">
    {
      "@context":"http://schema.org", 
      "@type":"ItemList",
      "url":"http://www.foxnews.com/",
      "itemListElement":[ {
        "@type":"ListItem",
        "position":1,
        "item":{
          "@type":"ItemList",
          "url":"http://www.foxnews.com/#big_top",
          "itemListElement":[        {
          "@type:":"ListItem",
          "position":1,
          "url":"http://www.foxnews.com/politics/2017/02/09/bill-to-split-nutty-9th-circuit-gains-momentum.html"
        } ,
        {
          "@type:":"ListItem",
          "position":2,
          "url":"http://www.foxnews.com/politics/2017/02/09/trump-hits-blumenthal-for-gorsuch-comment-claims-vietnam-lie.html"
        } ,
        {
          "@type:":"ListItem",
          "position":3,
          "url":"http://www.foxnews.com/us/2017/02/09/protests-erupt-outside-phoenix-ice-office-after-arrest-illegal-immigrant.html"
        } ,
        {
          "@type:":"ListItem",
          "position":4,
          "url":"http://www.foxnews.com/entertainment/2017/02/09/youtube-singers-estate-sues-beyonce-for-20m-in-copyright-infringement-suit.html"
        } 
           ] }
      },
	  
      {
        "@type":"ListItem",
        "position":2,
        "item":{
          "@type":"ItemList",
          "url":"http://www.foxnews.com/#latest_news",
          "itemListElement":[        {
          "@type:":"ListItem",
          "position":1,
          "url":"http://www.foxnews.com/us/2017/02/09/major-snowstorm-threatens-to-snarl-commute-for-millions-in-northeast.html"
        } ,
        {
          "@type:":"ListItem",
          "position":2,
          "url":"http://www.foxnews.com/tech/2017/02/09/wikipedia-bans-editors-from-citing-daily-mail-as-source.html"
        } ,
        {
          "@type:":"ListItem",
          "position":3,
          "url":"http://www.foxnews.com/world/2017/02/09/islamic-state-fighters-reportedly-calling-trump-travel-ban-blessed-ban.html"
        } ,
        {
          "@type:":"ListItem",
          "position":4,
          "url":"http://www.foxnews.com/us/2017/02/09/oaklands-incoming-police-chief-to-receive-historic-salary.html"
        } ,
        {
          "@type:":"ListItem",
          "position":5,
          "url":"http://insider.foxnews.com/2017/02/08/intel-build-fab-42-factory-arizona-creating-thousands-jobs"
        } ,
        {
          "@type:":"ListItem",
          "position":6,
          "url":"http://www.foxnews.com/politics/2017/02/09/to-declaw-cats-or-not-new-jersey-could-be-first-with-ban.html"
        } ,
        {
          "@type:":"ListItem",
          "position":7,
          "url":"https://www.aol.com/article/news/2017/02/08/florida-man-caught-steal-7-billion-blames-jesus/21709990/?ncid=txtlnkusaolp00000058&"
        } ,
        {
          "@type:":"ListItem",
          "position":8,
          "url":"http://www.foxnews.com/us/2017/02/09/thief-takes-uc-berkeley-gop-signup-sheet-after-milo-visit-report-says.html"
        } ,
        {
          "@type:":"ListItem",
          "position":9,
          "url":"http://www.foxnews.com/opinion/2017/02/09/americas-kids-got-more-stupid-in-reading-math-and-science-while-team-obama-was-in-charge.html"
        } ,
        {
          "@type:":"ListItem",
          "position":10,
          "url":"http://www.foxnews.com/politics/2017/02/09/gop-gives-elizabeth-warren-boost-as-dems-seize-on-silencing-theme.html"
        } ,
        {
          "@type:":"ListItem",
          "position":11,
          "url":"http://www.foxbusiness.com/markets/2017/02/09/u-s-court-upholds-obama-era-retirement-advice-rule.html"
        } ,
        {
          "@type:":"ListItem",
          "position":12,
          "url":"http://www.foxbusiness.com/features/2017/02/08/federal-judge-blocks-anthem-planned-acquisition-cigna653983.html"
        } ,
        {
          "@type:":"ListItem",
          "position":13,
          "url":"http://www.foxnews.com/politics/2017/02/09/kasich-to-newspaper-editors-want-to-survive.html"
        } ,
        {
          "@type:":"ListItem",
          "position":14,
          "url":"http://heatst.com/culture-wars/college-forbids-classroom-recordings-after-video-of-prof-trashing-trump-goes-viral/"
        } ,
        {
          "@type:":"ListItem",
          "position":15,
          "url":"http://www.foxnews.com/us/2017/02/09/hawaii-considers-letting-homeless-to-camp-in-specially-designated-safe-zones.html"
        } ,
        {
          "@type:":"ListItem",
          "position":16,
          "url":"http://www.foxnews.com/world/2017/02/09/blast-in-french-nuclear-plants-machine-room-no-radiation.html"
        } ,
        {
          "@type:":"ListItem",
          "position":17,
          "url":"http://heatst.com/world/muslim-peace-conference-deletes-faces-of-women-speakers-on-promo-fliers/"
        } 
           ] }
      },
	  
      {
        "@type":"ListItem",
        "position":3,
        "item":{
          "@type":"ItemList",
          "url":"http://www.foxnews.com/#features_faces",
          "itemListElement":[        {
          "@type:":"ListItem",
          "position":1,
          "url":"http://www.foxnews.com/auto/2017/02/08/2018-chevrolet-colorado-zr2-pickup-priced-at-40995.html"
        } ,
        {
          "@type:":"ListItem",
          "position":2,
          "url":"http://www.foxnews.com/entertainment/2017/02/09/si-swimsuit-rookie-myla-dalbesio-wants-all-women-to-feel-good-about-their-bodies.html"
        } ,
        {
          "@type:":"ListItem",
          "position":3,
          "url":"http://www.foxnews.com/entertainment/2017/02/09/tomi-lahren-dont-play-lefts-game.html"
        } ,
        {
          "@type:":"ListItem",
          "position":4,
          "url":"http://www.foxnews.com/entertainment/2017/02/09/patriots-fan-maria-menounos-loses-diamond-during-super-bowl-celebration.html"
        } ,
        {
          "@type:":"ListItem",
          "position":5,
          "url":"http://www.foxnews.com/food-drink/2017/02/09/company-behind-5-hour-energy-ordered-to-pay-4-3-million-for-deceptive-ads.html"
        } ,
        {
          "@type:":"ListItem",
          "position":6,
          "url":"http://www.foxnews.com/science/2017/02/09/first-atomic-blast-reveals-clues-about-moon-formation.html"
        } ,
        {
          "@type:":"ListItem",
          "position":7,
          "url":"http://www.foxnews.com/health/2017/02/09/was-thin-fit-and-had-heart-attack-at-28.html"
        } ,
        {
          "@type:":"ListItem",
          "position":8,
          "url":"http://video.foxnews.com/v/5315793506001/"
        } ,
        {
          "@type:":"ListItem",
          "position":9,
          "url":"http://www.foxnews.com/entertainment/2017/02/09/oprah-winfrey-sells-painting-for-150m.html"
        } ,
        {
          "@type:":"ListItem",
          "position":10,
          "url":"http://www.foxnews.com/entertainment/2017/02/09/anna-nicole-smiths-mother-claims-hasnt-seen-dannielynn-in-7-years.html"
        } ,
        {
          "@type:":"ListItem",
          "position":11,
          "url":"http://www.foxnews.com/entertainment/2017/02/09/christie-brinkleys-ex-romancing-21-year-old-college-student.html"
        } ,
        {
          "@type:":"ListItem",
          "position":12,
          "url":"http://www.foxnews.com/tech/2017/02/08/1000-iphone-8-would-be-apples-most-courageous-move-yet.html"
        } ,
        {
          "@type:":"ListItem",
          "position":13,
          "url":"http://www.foxnews.com/food-drink/2017/02/09/lena-dunham-has-tattoo-her-favorite-restaurant-in-very-private-place.html"
        } ,
        {
          "@type:":"ListItem",
          "position":14,
          "url":"http://video.foxnews.com/v/5316180061001"
        } 
           ] }
      }
	  ] }
	</script>



<div id="wrapper">
<nav id="network">
	<div>
		<ul>
			<li class="fn active"><a href="//foxnews.com"><span><span>Fox News</span></span></a></li>
			<li class="fb"><a href="//foxbusiness.com"><span><span>Fox Business</span></span></a></li>
			<li class="fn-go"><a href="//www.foxnewsgo.com"><span><span>Fox News Go</span></span></a></li>
			<li class="fnr"><a href="//radio.foxnews.com"><span><span>Fox News Radio</span></span></a></li>
			<li class="nat"><a href="//nation.foxnews.com"><span><span>Fox Nation</span></span></a></li>
			<li class="fni"><a href="//foxnewsinsider.com/"><span><span>Fox News Insider</span></span></a></li>
		</ul>
		<div id="account"></div><!-- /account -->
	</div>
</nav><!-- /network -->

<div class="mboxDefault"></div> 
<script type="text/javascript">
 mboxCreate('FoxNews-Standard',"site=fnc","pagetype=homepage","section=root","subsection="); 
</script>

<header id="top" class="fn">
	<div>
		<a href="//www.foxnews.com?intcmp=logo" class="logo">FoxNews.com</a>
		<div class="int">
			<form action="http://www.foxnews.com/search-results/search" method="get" class="search">
				<fieldset>
					<a href="#">Search</a>
					<input type="text" value="Search foxnews.com">
					<input type="hidden" name="ss" value="fn">
				</fieldset>
			</form>
			<div class="social">
				<ul>
					<li class="fbk"><a href="//www.facebook.com/FoxNews" target="_blank">Fox News Facebook</a></li>
					<li class="twt"><a href="//twitter.com/FoxNews" target="_blank">Fox News Twitter</a></li>
					<li class="gplus"><a href="//plus.google.com/+FoxNews" target="_blank">Fox News Google+</a></li>
				</ul>
			</div>
		</div><!-- /int -->
		<nav id="menu">
			<ul>
				<li class="active"><a href="//www.foxnews.com">Home</a></li>
				<li><a href="//video.foxnews.com">Video</a></li>
				<li><a href="/politics">Politics</a></li>
				<li><a href="/us">U.S.</a></li>
				<li><a href="/opinion">Opinion</a></li>
				<li><a href="//foxbusiness.com">Business</a></li>
				<li><a href="/entertainment">Entertainment</a></li>
				<li><a href="/tech">Tech</a></li>
				<li><a href="/science">Science</a></li>
				<li><a href="/health">Health</a></li>
				<li><a href="/travel">Travel</a></li>
				<li><a href="/leisure">Lifestyle</a></li>
				<li><a href="/world">World</a></li>
				<li><a href="/shows">On Air</a></li>
			</ul>
		</nav><!-- /menu -->
	</div>
</header><!-- /header -->


	<div class="advert">
 <div class="ad gpt" id="board1-970x66_970x250"></div>
	</div><!-- /top ad -->



<div id="headline-callout"></div>
 <div id="doc">
		 <div id="col">

					 
						<!--[if IE 5]> Vignette StoryServer 5.0 Thu Feb 09 10:08:45 2017 <![endif]-->
 
	
	  
	  
	 
		 
	
		 
	
	
	
		 
	
	
	
	  
  
	   
		        
	   
		        
	   
		        
	   
		        
	   
		        
	   
		          
	 
	 
	 
	 
	 
	 
	
		    
    
	
		 
	<div id="big-top" data-vr-zone="big-top" class="alt">
<div class="primary" data-vr-contentbox=""> 


					<h1><a href="http://www.foxnews.com/politics/2017/02/09/bill-to-split-nutty-9th-circuit-gains-momentum.html">CIRCUIT BREAKER: Bill would split 'nutty' federal appeals court now considering Trump travel ban</a></h1>

	 <a href="http://www.foxnews.com/politics/2017/02/09/bill-to-split-nutty-9th-circuit-gains-momentum.html"> <div class="m"><img src="http://a57.foxnews.com/www.foxnews.com/images/root_images/397/0/Trump Travel Ban 9th _Suar 2_20170209_093113.jpg" alt="" /></div>
	</a>    <div class="related">
<ul>
<li><b><a href="http://www.foxnews.com/politics/2017/02/08/white-house-fires-back-at-immigration-order-critics-with-list-terror-arrests.html">White House fires back at immigration order critics with list of terror arrests</a></b></li>
<li><b><a href="http://www.foxnews.com/politics/2017/02/09/alabama-ag-named-to-jeff-sessions-former-senate-seat.html">Alabama AG named to Jeff Sessions' former Senate seat</a></b></li>
<li><b><a href="http://www.foxnews.com/politics/2017/02/08/sessions-confirmed-as-attorney-general-after-contentious-debate.html">Sessions confirmed as attorney general after contentious debate</a></b></li>
<li><b><a href="http://www.foxnews.com/politics/2017/02/09/stephen-miller-coverage-trump-travel-ban-dishonest-false-and-wrong.html"><span style=" color: #BA1419"><b>'HANNITY:'</b></span> Trump adviser says travel ban coverage was 'dishonest'</a></b></li>
<li><b><a href="http://www.foxnews.com/us/2017/02/09/us-probes-plane-that-got-too-close-to-air-force-one-report-says.html">US probes plane that got too close to Air Force One, report says</a></b> </li>
<li><b><a href="http://www.foxnews.com/opinion/2017/02/09/andrew-napolitano-what-every-american-wants-to-know-about-federal-judges.html">JUDGE NAP: What every American wants to know about federal judges</a></b> </li>
<li><b><a href="http://www.foxnews.com/politics/2017/02/03/list-trumps-executive-orders.html"><span style="color: #bb0000; font-weight: bold;">LIST OF TRUMP'S EXECUTIVE ORDERS </span></a></b></li>
<li><b><a href="http://www.foxnews.com/politics/trump-100-days.html"><span style="color: #bb0000; font-weight: bold;">'EXPLORE TRUMP'S FIRST 100 DAYS'</span></a></b>  </li>
<li><b><a href="http://www.foxnews.com/politics/2016/12/21/trump-s-team-who-s-who-in-president-elect-s-cabinet-white-house.html"><span style="color: #bb0000; font-weight: bold;">TRUMP&rsquo;S TEAM: WHO&rsquo;S WHO IN PRESIDENT&rsquo;S CABINET, WHITE HOUSE</a></b></li>
</ul>
</div></div>

 <div class="top-stories">
					<ul>

	
	
	
	
	
	
	
	 
	 
	 
	 
		   <li data-vr-contentbox=""><a href="http://www.foxnews.com/politics/2017/02/09/trump-hits-blumenthal-for-gorsuch-comment-claims-vietnam-lie.html">
		<!--  -->
		<div class="m"><img src="http://a57.foxnews.com/www.foxnews.com/ucat/images/root/212/96/CfakepathTrump_Suar_20170209_080242.jpg" alt="" width="212" height="96" /></div> <h3><span style="color: #bb0000; font-weight: bold;">TWEETER-IN-CHIEF</span> <BR>Trump hits senator for Gorsuch leak, Vietnam &lsquo;lie'</h3>
		</a>
		<div class="related">
<ul>
<li><b><a href="http://www.foxnews.com/politics/2017/02/09/trump-hits-mccain-for-criticism-yemen-raid.html">Trump hits McCain for criticism of Yemen raid</a></b></li>
<li><b><a href="http://www.foxnews.com/politics/2017/02/08/gorsuch-calls-trump-comments-about-judges-disheartening-and-demoralizing.html">Gorsuch calls Trump comments about judges 'disheartening'</a></b></li>
<li><b><a href="http://www.foxnews.com/opinion/2017/02/09/sean-hannity-phony-native-american-liz-warren-leads-dems-twisted-anti-trump-charge.html"> <span style=" color: #BA1419"><b>HANNITY:</b></span> Phony Native American Warren leads Dems' twisted anti-Trump charge</a></b></li>
</ul>
</div> </li>
	
	 
		   <li data-vr-contentbox=""><a href="http://www.foxnews.com/us/2017/02/09/protests-erupt-outside-phoenix-ice-office-after-arrest-illegal-immigrant.html">
		<!--  -->
		<div class="m"><img src="http://a57.foxnews.com/www.foxnews.com/ucat/images/root/212/96/Cfakepaththumb phx protest_20170209_023653.jpg" alt="" width="212" height="96" /></div> <h3>DEPORTATION DRAMA<br> Protests break out after arrest of illegal immigrant</h3>
		</a>
		<div class="related">
<ul>
<li><b><a href="http://video.foxnews.com/v/5316928892001/">VIDEO: Protesters block ICE van after illegal immigrant arrested</a></b> <img src="/i/redes/icon-video.gif"></li>
<li><b><a href="http://video.foxnews.com/v/5316974486001/">VIDEO: Illegal immigrants tie up phones venting about border agents</a></b> <img src="/i/redes/icon-video.gif"></li>
</ul>
</div> </li>
	
	 
		   <li data-vr-contentbox=""><a href="http://www.foxnews.com/entertainment/2017/02/09/youtube-singers-estate-sues-beyonce-for-20m-in-copyright-infringement-suit.html">
		<!--  -->
		<div class="m"><img src="http://a57.foxnews.com/www.foxnews.com/ucat/images/root/212/96/CfakepathRTR43KSE_20170209_084502.jpg" alt="" width="212" height="96" /></div> <h3>HAS A RING TO IT <br> Beyonce sued for sampling dead YouTube star</h3>
		</a>
		<div class="related">
<ul>
<li><b><a href="http://www.foxnews.com/entertainment/2017/02/08/gigi-hadid-accused-mocking-asian-people-in-video-her-with-buddha-cookie.html">Hadid accused of mocking Asians in video of her with Buddha cookie</a></b></li>
<li><b><a href="http://www.foxnews.com/entertainment/2017/02/09/anna-nicole-smiths-mother-claims-hasnt-seen-dannielynn-in-7-years.html">Anna Nicole Smith's mother claims she hasn't seen Dannielynn in 7 years</a></b></li>
</ul>
</div> </li>
	  </ul>
	</div><!-- /top stories -->
</div><!-- /big top -->


<script type="text/javascript">
var secTimeStamp = "02/09/2017 10:08";
</script>

					 



					<section id="latest" data-vr-zone="latest-news"> 
						<h2>Latest News</h2>
							
								<!--[if IE 5]> Vignette StoryServer 5.0 Thu Feb 09 09:52:15 2017 <![endif]-->
  <ul>
<li data-vr-contentbox><a href="http://www.foxnews.com/us/2017/02/09/major-snowstorm-threatens-to-snarl-commute-for-millions-in-northeast.html?intcmp=latestnews"><b>3,000 flights canceled as snowstorm slams Northeast</B></a><br>- <a href="http://video.foxnews.com/v/5316942566001/?intcmp=latestnews">VIDEO: Millions brace for blast of winter weather <img src="/i/redes/icon-video.gif"></a><br>- <a href="http://www.foxnews.com/us/slideshow/2017/02/09/northeast-braces-for-snowstorm-as-morning-commute-turns-into-nightmare.html?intcmp=latestnews">SLIDESHOW: Northeast braces for snowstorm as morning commute turns into a nightmare  <img src="/i/redes/icon-slideshow.gif"></a></li>
<li data-vr-contentbox><a href="http://www.foxnews.com/tech/2017/02/09/wikipedia-bans-editors-from-citing-daily-mail-as-source.html?intcmp=latestnews">Wikipedia bans editors from citing Daily Mail as source</a></li>
<li data-vr-contentbox><a href="http://www.foxnews.com/world/2017/02/09/islamic-state-fighters-reportedly-calling-trump-travel-ban-blessed-ban.html?intcmp=latestnews">Islamic State fighters reportedly calling Trump travel ban the 'blessed ban'</a></li>
<li data-vr-contentbox><a href="http://www.foxnews.com/us/2017/02/09/oaklands-incoming-police-chief-to-receive-historic-salary.html?intcmp=latestnews">Incoming Oakland police chief to receive historic salary</a></li>
<li data-vr-contentbox><a href="http://insider.foxnews.com/2017/02/08/intel-build-fab-42-factory-arizona-creating-thousands-jobs"><span style=" color: #BA1419"><b>FOX NEWS INSIDER: </b></span><b>Intel announces $7B investment in factory</b></a></li>
<li data-vr-contentbox><a href="http://www.foxnews.com/politics/2017/02/09/to-declaw-cats-or-not-new-jersey-could-be-first-with-ban.html?intcmp=latestnews">To declaw cats or not? NJ could be first with ban</a></li>
<li data-vr-contentbox><a href="https://www.aol.com/article/news/2017/02/08/florida-man-caught-steal-7-billion-blames-jesus/21709990/?ncid=txtlnkusaolp00000058&" target="_blank">Man blames Jesus after caught trying to steal $7B</a>&nbsp;<img src="/i/external.gif" /></li>
<li data-vr-contentbox><a href="http://www.foxnews.com/us/2017/02/09/thief-takes-uc-berkeley-gop-signup-sheet-after-milo-visit-report-says.html?intcmp=latestnews">Thief takes UC Berkeley GOP signup sheet after Milo visit, report says</a></li>
<li data-vr-contentbox><a href="http://www.foxnews.com/opinion/2017/02/09/americas-kids-got-more-stupid-in-reading-math-and-science-while-team-obama-was-in-charge.html?intcmp=latestnews">TODD STARNES: Kids got more stupid in reading, math and science while Team Obama was in charge</a></li>
</ul>
							<ul><li data-vr-contentbox><a href="http://www.foxnews.com/politics/2017/02/09/gop-gives-elizabeth-warren-boost-as-dems-seize-on-silencing-theme.html?intcmp=latestnews"><b>MEDIA BUZZ: GOP gives Elizabeth Warren a boost as Dems seize on 'silencing' theme</b></a><br>- <a href="http://fxn.ws/2k4smXN" target="_blank"><span style="color: #bb0000; font-weight: bold;">FOX NEWS HALFTIME REPORT:</span> Elizabeth Warren is doing it wrong</a></li>
<li data-vr-contentbox><a href="http://www.foxbusiness.com/markets/2017/02/09/u-s-court-upholds-obama-era-retirement-advice-rule.html" target="_blank">U.S. court upholds Obama-era retirement advice rule</a></li>
<li data-vr-contentbox><a href="http://www.foxbusiness.com/features/2017/02/08/federal-judge-blocks-anthem-planned-acquisition-cigna653983.html" target="_blank">Federal judge blocks Anthem's planned acquisition of Cigna</a></li>
<li data-vr-contentbox><a href="http://www.foxnews.com/politics/2017/02/09/kasich-to-newspaper-editors-want-to-survive.html?intcmp=latestnews"><B>Kasich to newspaper editors: 'I want you to survive'</B></a></li>
<li data-vr-contentbox><a href="http://heatst.com/culture-wars/college-forbids-classroom-recordings-after-video-of-prof-trashing-trump-goes-viral/" target="_blank">College forbids classroom recordings after video of proffesor slamming Trump goes viral</a>&nbsp;<img src="/i/external.gif" /></li>
<li data-vr-contentbox><a href="http://www.foxnews.com/us/2017/02/09/hawaii-considers-letting-homeless-to-camp-in-specially-designated-safe-zones.html?intcmp=latestnews"><b>Hawaii considers letting homeless camp in specially designated 'safe zones'</b></a></li>
<li data-vr-contentbox><a href="http://www.foxnews.com/world/2017/02/09/blast-in-french-nuclear-plants-machine-room-no-radiation.html?intcmp=latestnews">Blast in French nuclear plant's machine room; no radiation</a></li>
<li data-vr-contentbox><a href="http://heatst.com/world/muslim-peace-conference-deletes-faces-of-women-speakers-on-promo-fliers/" target="_blank">Muslim peace conference deletes faces of female speakers on promo fliers</a>&nbsp;<img src="/i/external.gif" /></li>
 </ul>

							 </section> 


				
			</div> <!-- /top col -->

				
				<div class="rail">

			<div id="weather">
				<div class="current">
					<div class="m"><img src="//global.fncstatic.com/static/v/all/img/weather/icons_24x24/67.png" style="width: 24px; display: inline; opacity: 1;" alt=""></div>
					<span class="temp">64&#176;</span>
				</div>
				<div class="your-weather">
					<form action="#" method="get">
						<fieldset>
							<div style="display:none;">
								<input type="text" value="Enter Zip Code" name="zip" id="weather_widgetInput">
								<input type="submit" value="Save" class="btn-sm" name="submit">
							</div>
							<div class="region" style="display:block;">
								<a href="#" class="close">Close</a>
								<span>New York, NY</span>
							</div>
						</fieldset>
					</form>
					<p class="more"><a href="/weather/your-weather/index.html">Detailed Forecast</a><span>&rsaquo;</span></p>
				</div>
			</div><!-- /weather -->

			<div class="advert">
				<div class="ad gpt" id="desktop-300x600_300x250"></div>
				<span class="ad-txt">ADVERTISEMENT</span>
			</div><!-- /300x250 ad -->
			
			
			<section id="watch">
			    <h2>Watch Now</h2>
			    <ul></ul>
			</section><!-- /watch -->
			
 </div><!-- /rail -->

		
				
					
						<!--[if IE 5]> Vignette StoryServer 5.0 Thu Feb 09 10:06:38 2017 <![endif]-->
 
	   
	 
		 
	 
		 
	 
		 
	 
		 
	 
		 
	 
		 
	 
		 
	 
		 
	 
		 
	 
		 
	 
		 
	 
		 
	 
		 
	 
		  
	   
	   
	   
	   
	   
	   
	   
	   
	   
	   
	   
	   
	   
	   <section id="features-faces" data-vr-zone="features-faces-1">
 <h2>Features &amp; Faces</h2>
  <ul>
   <li data-vr-contentbox>
  <div class="m"><a data-omtr-intcmp="hpff1" href="http://www.foxnews.com/auto/2017/02/08/2018-chevrolet-colorado-zr2-pickup-priced-at-40995.html"><img src="http://a57.foxnews.com/www.foxnews.com/ucat/images/121/91/312358_colorado-zr2.jpg" alt="Chevy ZR2 costs HOW MUCH?" width=121 /></a></div>
      <h3><a data-omtr-intcmp="hpff1" href="http://www.foxnews.com/auto/2017/02/08/2018-chevrolet-colorado-zr2-pickup-priced-at-40995.html">Chevy ZR2 costs HOW MUCH?</a></h3>
          <p class="summary"></p>
   </li>
   <li data-vr-contentbox>
  <div class="m"><a data-omtr-intcmp="hpff2" href="http://www.foxnews.com/entertainment/2017/02/09/si-swimsuit-rookie-myla-dalbesio-wants-all-women-to-feel-good-about-their-bodies.html"><img src="http://a57.foxnews.com/www.foxnews.com/ucat/images/121/91/311250_484_si_rookie_3.jpg" alt="Meet SI swimsuit rookie" width=121 /></a></div>
      <h3><a data-omtr-intcmp="hpff2" href="http://www.foxnews.com/entertainment/2017/02/09/si-swimsuit-rookie-myla-dalbesio-wants-all-women-to-feel-good-about-their-bodies.html">Meet SI swimsuit rookie</a></h3>
          <p class="summary"></p>
   </li>
   <li data-vr-contentbox>
  <div class="m"><a data-omtr-intcmp="hpff3" href="http://www.foxnews.com/entertainment/2017/02/09/tomi-lahren-dont-play-lefts-game.html"><img src="http://a57.foxnews.com/www.foxnews.com/ucat/images/121/91/316829_121_tomi_personal.jpg" alt="Tomi Lahren gets personal" width=121 /></a></div>
      <h3><a data-omtr-intcmp="hpff3" href="http://www.foxnews.com/entertainment/2017/02/09/tomi-lahren-dont-play-lefts-game.html">Tomi Lahren gets personal</a></h3>
          <p class="summary"></p>
   </li>
   <li data-vr-contentbox>
  <div class="m"><a data-omtr-intcmp="hpff4" href="http://www.foxnews.com/entertainment/2017/02/09/patriots-fan-maria-menounos-loses-diamond-during-super-bowl-celebration.html"><img src="http://a57.foxnews.com/www.foxnews.com/ucat/images/121/91/318656_484_maria_diamond.jpg" alt="Maria loses her diamond" width=121 /></a></div>
      <h3><a data-omtr-intcmp="hpff4" href="http://www.foxnews.com/entertainment/2017/02/09/patriots-fan-maria-menounos-loses-diamond-during-super-bowl-celebration.html">Maria loses her diamond</a></h3>
          <p class="summary"></p>
   </li>
   <li data-vr-contentbox>
  <div class="m"><a data-omtr-intcmp="hpff5" href="http://www.foxnews.com/food-drink/2017/02/09/company-behind-5-hour-energy-ordered-to-pay-4-3-million-for-deceptive-ads.html"><img src="http://a57.foxnews.com/www.foxnews.com/ucat/images/121/91/320153_ertert213324334.jpg" alt="5-Hour Energy drink a scam?" width=121 /></a></div>
      <h3><a data-omtr-intcmp="hpff5" href="http://www.foxnews.com/food-drink/2017/02/09/company-behind-5-hour-energy-ordered-to-pay-4-3-million-for-deceptive-ads.html">5-Hour Energy drink a scam?</a></h3>
          <p class="summary"></p>
   </li>
   <li data-vr-contentbox>
  <div class="m"><a data-omtr-intcmp="hpff6" href="http://www.foxnews.com/science/2017/02/09/first-atomic-blast-reveals-clues-about-moon-formation.html"><img src="http://a57.foxnews.com/www.foxnews.com/ucat/images/121/91/302070_Atomic484.jpg" alt="Atomic test did what?!" width=121 /></a></div>
      <h3><a data-omtr-intcmp="hpff6" href="http://www.foxnews.com/science/2017/02/09/first-atomic-blast-reveals-clues-about-moon-formation.html">Atomic test did what?!</a></h3>
          <p class="summary"></p>
   </li>
   <li data-vr-contentbox>
  <div class="m"><a data-omtr-intcmp="hpff7" href="http://www.foxnews.com/health/2017/02/09/was-thin-fit-and-had-heart-attack-at-28.html"><img src="http://a57.foxnews.com/www.foxnews.com/ucat/images/121/91/305048_1486495661475.jpg" alt="A heart attack at 28 " width=121 /></a></div>
      <h3><a data-omtr-intcmp="hpff7" href="http://www.foxnews.com/health/2017/02/09/was-thin-fit-and-had-heart-attack-at-28.html">A heart attack at 28 </a></h3>
          <p class="summary"></p>
   </li>
   <li class="video" data-vr-contentbox>
  <div class="m"><a data-omtr-intcmp="hpff8" href="http://video.foxnews.com/v/5315793506001/"><img src="http://a57.foxnews.com/www.foxnews.com/ucat/images/121/91/302921_020817_do_444_science_484.jpg" alt="Gecko jumps out of skin" width=121 /></a></div>
      <h3><a data-omtr-intcmp="hpff8" href="http://video.foxnews.com/v/5315793506001/">Gecko jumps out of skin</a></h3>
          <p class="summary"></p>
   </li>
   <li data-vr-contentbox>
  <div class="m"><a data-omtr-intcmp="hpff9" href="http://www.foxnews.com/entertainment/2017/02/09/oprah-winfrey-sells-painting-for-150m.html"><img src="http://a57.foxnews.com/www.foxnews.com/ucat/images/121/91/319574_484_oprah_winfrey.jpg" alt="Oprah pulls off major sale" width=121 /></a></div>
      <h3><a data-omtr-intcmp="hpff9" href="http://www.foxnews.com/entertainment/2017/02/09/oprah-winfrey-sells-painting-for-150m.html">Oprah pulls off major sale</a></h3>
          <p class="summary"></p>
   </li>
   <li data-vr-contentbox>
  <div class="m"><a data-omtr-intcmp="hpff10" href="http://www.foxnews.com/entertainment/2017/02/09/anna-nicole-smiths-mother-claims-hasnt-seen-dannielynn-in-7-years.html"><img src="http://a57.foxnews.com/www.foxnews.com/ucat/images/121/91/304464_484_smith_feud.jpg" alt="Smith's mom: Let me see Dannie" width=121 /></a></div>
      <h3><a data-omtr-intcmp="hpff10" href="http://www.foxnews.com/entertainment/2017/02/09/anna-nicole-smiths-mother-claims-hasnt-seen-dannielynn-in-7-years.html">Smith's mom: Let me see Dannie</a></h3>
          <p class="summary"></p>
   </li>
   <li data-vr-contentbox>
  <div class="m"><a data-omtr-intcmp="hpff11" href="http://www.foxnews.com/entertainment/2017/02/09/christie-brinkleys-ex-romancing-21-year-old-college-student.html"><img src="http://a57.foxnews.com/www.foxnews.com/ucat/images/121/91/308566_484_cook_gal.jpg" alt="Brinkley's ex's new gal pal" width=121 /></a></div>
      <h3><a data-omtr-intcmp="hpff11" href="http://www.foxnews.com/entertainment/2017/02/09/christie-brinkleys-ex-romancing-21-year-old-college-student.html">Brinkley's ex's new gal pal</a></h3>
          <p class="summary"></p>
   </li>
   <li data-vr-contentbox>
  <div class="m"><a data-omtr-intcmp="hpff12" href="http://www.foxnews.com/tech/2017/02/08/1000-iphone-8-would-be-apples-most-courageous-move-yet.html"><img src="http://a57.foxnews.com/www.foxnews.com/ucat/images/121/91/303607_iPhoneGloss484.jpg" alt="$1,000 iPhone coming?" width=121 /></a></div>
      <h3><a data-omtr-intcmp="hpff12" href="http://www.foxnews.com/tech/2017/02/08/1000-iphone-8-would-be-apples-most-courageous-move-yet.html">$1,000 iPhone coming?</a></h3>
          <p class="summary"></p>
   </li>
   <li data-vr-contentbox>
  <div class="m"><a data-omtr-intcmp="hpff13" href="http://www.foxnews.com/food-drink/2017/02/09/lena-dunham-has-tattoo-her-favorite-restaurant-in-very-private-place.html"><img src="http://a57.foxnews.com/www.foxnews.com/ucat/images/121/91/319973_ewrwer434311111.jpg" alt="Lena's wacky restaurant tattoo" width=121 /></a></div>
      <h3><a data-omtr-intcmp="hpff13" href="http://www.foxnews.com/food-drink/2017/02/09/lena-dunham-has-tattoo-her-favorite-restaurant-in-very-private-place.html">Lena's wacky restaurant tattoo</a></h3>
          <p class="summary"></p>
   </li>
   <li class="video" data-vr-contentbox>
  <div class="m"><a data-omtr-intcmp="hpff14" href="http://video.foxnews.com/v/5316180061001"><img src="http://a57.foxnews.com/www.foxnews.com/ucat/images/121/91/308761_484_18_coffee.jpg" alt="$18 for a cup of coffee?" width=121 /></a></div>
      <h3><a data-omtr-intcmp="hpff14" href="http://video.foxnews.com/v/5316180061001">$18 for a cup of coffee?</a></h3>
          <p class="summary"></p>
   </li>
  </ul>
 </section>

 
					 <section id="mkt-snap">
				<header>
					<h2>Markets</h2>
					<div class="advert"> 
						<div class="ad gpt" id="stocksearch-292x30"></div> 
					</div><!-- /mkt ad --> 

				</header>
				<div id="mkts">
					<div class="mkts">
						<ul>
							<li class="up">
								<a href="http://quote.foxbusiness.com/symbol/i:dji/snapshot">
									<h3>DJIA</h3>
									<p class="current">&nbsp;</p>
									<p class="mkt-up">&nbsp;</p>
									<p class="mkt-per">&nbsp;</p>
								</a>
							</li>
							<li class="up">
								<a href="http://quote.foxbusiness.com/symbol/i:comp/snapshot">
									<h3>Nasdaq</h3>
									<p class="current">&nbsp;</p>
									<p class="mkt-up">&nbsp;</p>
									<p class="mkt-per">&nbsp;</p>
								</a>
							</li>
							<li class="up">
								<a href="http://www.foxbusiness.com/quote.html?stockTicker=SP500">
									<h3>S&amp;P 500</h3>
									<p class="current">&nbsp;</p>
									<p class="mkt-up">&nbsp;</p>
									<p class="mkt-per">&nbsp;</p>
								</a>
							</li>
							<li class="up">
								<a href="http://www.foxbusiness.com/category/markets/commodities.html">
									<h3>Gold</h3>
									<p class="current">&nbsp;</p>
									<p class="mkt-up">&nbsp;</p>
									<p class="mkt-per">&nbsp;</p>
								</a>
							</li>
						</ul>
					</div>
					<div class="mkt-rel">
					 <ul>
							<li><a href="http://www.foxbusiness.com/markets/2017/02/09/foot-snow-icy-cold-to-blanket-northeast.html" target="_blank">A Foot of Snow, Icy Cold Forecast for Northeastern U.S.</a>
</li>
<li><a href="http://www.foxbusiness.com/markets/2017/02/09/boeing-wins-13-8b-singapore-airlines-order.html" target="_blank">Boeing Wins $13.8B Singapore Airlines Order</a>
</li>
<li><a href="http://www.foxbusiness.com/politics/2017/02/08/senate-confirms-sessions-for-attorney-general.html" target="_blank">Senate Confirms Sessions for Attorney General</a>
</li>
<li><a href="http://www.foxbusiness.com/markets/2017/02/09/twitter-beats-on-profit-misses-on-revenue.html" target="_blank">Twitter Reports Slowest Quarterly Revenue Growth, Shares Slump</a>
</li>

							 </ul>
						<p class="more"><a href="http://www.foxbusiness.com/" target="_blank">Continue to Fox Business</a><span>&rsaquo;</span></p>
					</div><!-- /markets related -->
				</div> <!-- /mkts -->
			</section><!-- / mkt-snap -->


 <section id="live">
                <header>
                    <h2>Watch Fox News</h2>
                    <a href="//www.foxnewsgo.com" class="fn-go">Fox News Go</a>
                </header>
                <div class="live">
                </div>
                <div class="info">
                    <div>
                        <span>Now Playing</span>
                        <h3><a href="#">&nbsp;</a></h3>
                    </div>
                    <p class="more"><a href="http://www.foxnews.com/fnctv/index.html">Full Schedule</a><span>&rsaquo;</span></p>
                </div>
            </section><!-- /live -->


		
			<section id="opinion" class="row">

<header>
    <h2><a href="http://www.foxnews.com/opinion/index.html">Opinion</a></h2>
    <p class="more"><a href="http://www.foxnews.com/opinion/index.html">Continue to Opinion</a> <span>&rsaquo;</span></p>
</header>
<div class="bkt article-ct">
  <a href="http://www.foxnews.com/opinion/2017/02/09/sean-hannity-phony-native-american-liz-warren-leads-dems-twisted-anti-trump-charge.html"><h3>Sean Hannity: Phony Native American Liz Warren leads Dems twisted anti-Trump charge</h3></a>
  <div class="byline"><div class="m"><a href="http://www.foxnews.com/archive/sean-hannity"><img height=48 width=48 src="/images/clear.gif" data-src="http://a57.foxnews.com/www.foxnews.com/content/dam/fox-news/images/2016/11/15/48/48/sean-hannity-headshot.jpeg?tl=1&ve=1" alt="Sean Hannity"></a></div><span>by <a href="http://www.foxnews.com/archive/sean-hannity">Sean Hannity</a></span></div>
</div>
<div class="bkt article-ct">
  <a href="http://www.foxnews.com/opinion/2017/02/09/americas-kids-got-more-stupid-in-reading-math-and-science-while-team-obama-was-in-charge.html"><h3>America's kids got more stupid in reading, math and science while Team Obama was in charge</h3></a>
  <div class="byline"><div class="m"><a href="http://www.foxnews.com/archive/todd-starnes"><img height=48 width=48 src="/images/clear.gif" data-src="http://a57.foxnews.com/www.foxnews.com/content/dam/fox-news/person/48/48/todd-starnes.png?tl=1&ve=1" alt="Todd Starnes"></a></div><span>by <a href="http://www.foxnews.com/archive/todd-starnes">Todd Starnes</a></span></div>
</div>
<div class="bkt article-ct">
  <a href="http://www.foxnews.com/opinion/2017/02/09/andrew-napolitano-what-every-american-wants-to-know-about-federal-judges.html"><h3>Andrew Napolitano: What every American wants to know about federal judges</h3></a>
  <div class="byline"><div class="m"><a href="http://www.foxnews.com/archive/andrew-napolitano"><img height=48 width=48 src="/images/clear.gif" data-src="http://a57.foxnews.com/www.foxnews.com/content/dam/fox-news/images/2015/04/17/48/48/andrew-napolitano.png?tl=1&ve=1" alt="Andrew Napolitano"></a></div><span>by <a href="http://www.foxnews.com/archive/andrew-napolitano">Andrew Napolitano</a></span></div>
</div>
<div class="bkt article-ct">
  <a href="http://www.foxnews.com/opinion/2017/02/08/have-national-security-crisis-lets-do-nothing.html"><h3>We have a national security crisis: Let's do nothing</h3></a>
  <div class="byline"><div class="m"><a href="http://www.foxnews.com/archive/john-moody"><img height=48 width=48 src="/images/clear.gif" data-src="http://a57.foxnews.com/www.foxnews.com/content/dam/fox-news/images/2017/01/10/48/48/john-moody-headshot-56301.jpg?tl=1&ve=1" alt="John Moody"></a></div><span>by <a href="http://www.foxnews.com/archive/john-moody">John Moody</a></span></div>
</div>
</section>

			<section id="health" class="row">

<header>
    <h2><a href="http://www.foxnews.com/health/index.html">Health</a></h2>
    <p class="more"><a href="http://www.foxnews.com/health/index.html">Continue to Health</a> <span>&rsaquo;</span></p>
</header>
<div class="bkt article-ct">
  <a href="http://www.foxnews.com/health/2017/02/09/woman-who-lost-memory-had-to-fall-for-boyfriend-twice.html">
    <div class="m"><img src="/images/clear.gif" height=127 width=225 data-src="http://a57.foxnews.com/www.foxnews.com/content/dam/fox-news/images/2015/11/20/225/127/holding-hands-couple.jpg?tl=1&ve=1" alt=""></div> 
    <h3>Woman who lost memory had to fall for boyfriend twice</h3>
  </a>
</div>
<div class="bkt article-ct">
  <a href="http://www.foxnews.com/health/2017/02/09/pennsylvania-school-disctrict-sued-over-lead-levels-in-water.html">
    <div class="m"><img src="/images/clear.gif" height=127 width=225 data-src="http://a57.foxnews.com/www.foxnews.com/content/dam/fox-news/images/2017/02/02/225/127/pittsburgh_water_troubles.jpg?tl=1&ve=1" alt=""></div> 
    <h3>Pennsylvania school disctrict sued over lead levels in water</h3>
  </a>
</div>
<div class="bkt article-ct">
  <a href="http://www.foxnews.com/health/2017/02/09/self-administered-expanders-allow-breast-cancer-patients-to-heal-at-home.html">
    <div class="m"><img src="/images/clear.gif" height=127 width=225 data-src="http://a57.foxnews.com/media2.foxnews.com/2017/02/08/225/127/aeroform_1280.jpg?tl=1&ve=1" alt=""></div> 
    <h3>Self-administered expanders allow breast cancer patients to heal at home</h3>
  </a>
</div>
<div class="bkt article-ct">
  <a href="http://www.foxnews.com/health/2017/02/09/was-thin-fit-and-had-heart-attack-at-28.html">
    <div class="m"><img src="/images/clear.gif" height=127 width=225 data-src="http://a57.foxnews.com/www.foxnews.com/content/dam/fox-news/images/2017/02/07/225/127/eve-heart-red.jpg?tl=1&ve=1" alt=""></div> 
    <h3>I was thin, fit— and had a heart attack at 28</h3>
  </a>
</div>
</section>

		 <div id="sponsored-stories">
			<div class="OUTBRAIN" data-widget-type="hp" data-fbk="foxHpNative" data-src="http://www.foxnews.com/" data-widget-id="HPP_3" data-ob-template="foxnews"></div>
		</div>
		
		<div id="dont-miss">
			<div class="OUTBRAIN" data-widget-type="hp" data-fbk="foxHpDontMiss" data-src="http://www.foxnews.com/" data-widget-id="HOP_15" data-ob-template="foxnews"></div>
		</div>





		
			<section id="the-property-project" class="row">

<header>
    <h2><a href="http://www.foxnews.com/content-spotlight/fox-news/property-project/index.html">The Property Project</a></h2>
    <p class="more"><a href="http://www.foxnews.com/content-spotlight/fox-news/property-project/index.html">Continue to The Property Project</a> <span>&rsaquo;</span></p>
</header>
<div class="bkt article-ct">
  <a href="http://www.foxnews.com/real-estate/2017/02/02/these-8-home-gyms-will-make-want-to-work-out.html">
    <div class="m"><img src="/images/clear.gif" height=127 width=225 data-src="http://a57.foxnews.com/www.foxnews.com/content/dam/fox-news/images/2017/02/02/225/127/summit45465.jpg?tl=1&ve=1" alt=""></div> 
    <h3>These 8 home gyms will make you want to work out</h3>
  </a>
</div>
<div class="bkt article-ct">
  <a href="http://www.foxnews.com/real-estate/2017/02/02/10-messy-habits-to-break-for-cleaner-home.html">
    <div class="m"><img src="/images/clear.gif" height=127 width=225 data-src="http://a57.foxnews.com/www.foxnews.com/content/dam/fox-news/images/2017/02/02/225/127/houzz_messyhabits2.jpg?tl=1&ve=1" alt=""></div> 
    <h3>10 Messy Habits to Break for a Cleaner Home</h3>
  </a>
</div>
<div class="bkt article-ct">
  <a href="http://www.foxnews.com/real-estate/2017/02/02/how-to-declutter-your-garden-using-konmari-method.html">
    <div class="m"><img src="/images/clear.gif" height=127 width=225 data-src="http://a57.foxnews.com/www.foxnews.com/content/dam/fox-news/images/2017/02/02/225/127/houzz_decluttergarden3.jpg?tl=1&ve=1" alt=""></div> 
    <h3>How to Declutter Your Garden Using the KonMari Method</h3>
  </a>
</div>
<div class="bkt article-ct">
  <a href="http://www.foxnews.com/real-estate/2017/02/02/how-to-grow-edible-garden-thats-right-for.html">
    <div class="m"><img src="/images/clear.gif" height=127 width=225 data-src="http://a57.foxnews.com/www.foxnews.com/content/dam/fox-news/images/2017/02/02/225/127/houzz_ediblegarden2.jpg?tl=1&ve=1" alt=""></div> 
    <h3>How to Grow the Edible Garden That's Right for You</h3>
  </a>
</div>
</section>

			<section id="food-drink" class="row">

<header>
    <h2><a href="http://www.foxnews.com/food-drink.html">Food & Drink</a></h2>
    <p class="more"><a href="http://www.foxnews.com/food-drink.html">Continue to Food & Drink</a> <span>&rsaquo;</span></p>
</header>
<div class="bkt video-ct">
  <a href="http://video.foxnews.com/v/5317079665001/">
    <div class="m"><img src="/images/clear.gif" height=127 width=225 data-src="http://a57.foxnews.com/media2.foxnews.com/BrightCove/694940094001/2017/02/09/225/127/694940094001_5317081315001_5317079665001-th.jpg?pubId=694940094001&tl=1&ve=1" alt=""></div> 
    <h3>Candy makers go crazy with sugary Valentine’s sweets</h3>
  </a>
</div>
<div class="bkt article-ct">
  <a href="http://www.foxnews.com/food-drink/2017/02/09/study-finds-new-bacterial-strain-can-contaminate-shellfish.html">
    <div class="m"><img src="/images/clear.gif" height=127 width=225 data-src="http://a57.foxnews.com/media2.foxnews.com/BrightCove/694940094001/2016/12/21/225/127/694940094001_5256898125001_122116-red-seafood-1280.jpg?tl=1&ve=1" alt=""></div> 
    <h3>Study finds new bacterial strain can contaminate shellfish</h3>
  </a>
</div>
<div class="bkt video-ct">
  <a href="http://video.foxnews.com/v/5317020541001/">
    <div class="m"><img src="/images/clear.gif" height=127 width=225 data-src="http://a57.foxnews.com/media2.foxnews.com/BrightCove/694940094001/2017/02/09/225/127/694940094001_5317037227001_5317020541001-th.jpg?pubId=694940094001&tl=1&ve=1" alt=""></div> 
    <h3>Celebrating National Pizza Day with NYC's Pizza Beach</h3>
  </a>
</div>
<div class="bkt article-ct">
  <a href="http://www.foxnews.com/food-drink/2017/02/09/lena-dunham-has-tattoo-her-favorite-restaurant-in-very-private-place.html">
    <div class="m"><img src="/images/clear.gif" height=127 width=225 data-src="http://a57.foxnews.com/www.foxnews.com/content/dam/fox-news/images/2017/02/09/225/127/dunhamedit88.jpg?tl=1&ve=1" alt=""></div> 
    <h3>Lena Dunham has a tattoo of her favorite restaurant in a very private place</h3>
  </a>
</div>
</section>


		 <section id="trending" class="block"> 
<header> 
<h2>Fox News Trending</h2> 
<p class="more"><a href="/trending">See all trends</a><span>&rsaquo;</span></p> 
</header> 
<ol><li><span>1</span>
<h3><a href="http://www.foxnews.com/politics/2017/02/09/bill-to-split-nutty-9th-circuit-gains-momentum.html?intcmp=trending">Bill to split 'nutty 9th Circuit' gains momentum</a></h3></li>
<li><span>2</span>
<h3><a href="http://www.foxnews.com/us/2017/02/09/protests-erupt-outside-phoenix-ice-office-after-arrest-illegal-immigrant.html?intcmp=trending">Protests erupt outside Phoenix ICE office after arrest of illegal immigrant</a></h3></li>
<li><span>3</span>
<h3><a href="http://www.foxnews.com/us/2017/02/09/us-probes-plane-that-got-too-close-to-air-force-one-report-says.html?intcmp=trending">US probes plane that got too close to Air Force One, report says</a></h3></li>
<li><span>4</span>
<h3><a href="http://www.foxnews.com/entertainment/2017/02/09/youtube-singers-estate-sues-beyonce-for-20m-in-copyright-infringement-suit.html?intcmp=trending">YouTube singer's estate sues Beyonce for $20M in copyright infringement suit</a></h3></li>
<li><span>5</span>
<h3><a href="http://www.foxnews.com/entertainment/2017/02/09/tomi-lahren-dont-play-lefts-game.html?intcmp=trending">Tomi Lahren: I don't play the left's game</a></h3></li>
</ol>
</section><!-- trending -->

	    <section id="trending-conv" class="block">
			<h2>Trending Conversations</h2>
			<ul>
			</ul>
		</section><!-- /convos -->


		
			<section id="what-to-watch" class="row">

<header><h2>What to Watch</h2></header>
<div class="bkt video-ct">
  <a href="http://video.foxnews.com/v/5316557352001/?playlist_id=2114913880001">
    <div class="m"><img src="/images/clear.gif" height=127 width=225 data-src="http://a57.foxnews.com/media2.foxnews.com/BrightCove/694940094001/2017/02/08/225/127/694940094001_5316551010001_Sekulow--Bondi-talk-legality-of-temporary-travel-ban.jpg?tl=1&ve=1" alt=""></div> 
    <h3>Sekulow, Bondi talk legality of temporary travel ban</h3>
  </a>
</div>
<div class="bkt video-ct">
  <a href="http://video.foxnews.com/v/5316425668001/?playlist_id=2114913880001">
    <div class="m"><img src="/images/clear.gif" height=127 width=225 data-src="http://a57.foxnews.com/media2.foxnews.com/BrightCove/694940094001/2017/02/08/225/127/694940094001_5316474879001_Miller-Time-Tom-Brady-s-missing-Super-Bowl-jersey.jpg?tl=1&ve=1" alt=""></div> 
    <h3>Miller Time: Tom Brady's missing Super Bowl jersey</h3>
  </a>
</div>
<div class="bkt video-ct">
  <a href="http://video.foxnews.com/v/5316518523001/?playlist_id=2114913880001">
    <div class="m"><img src="/images/clear.gif" height=127 width=225 data-src="http://a57.foxnews.com/media2.foxnews.com/BrightCove/694940094001/2017/02/08/225/127/694940094001_5316527130001_Dem-congressman-Trump-treated-better-than-GOP-did-Obama.jpg?tl=1&ve=1" alt=""></div> 
    <h3>Dem congressman: Trump treated better than GOP did Obama</h3>
  </a>
</div>
<div class="bkt video-ct">
  <a href="http://video.foxnews.com/v/5316359410001/?playlist_id=2114913880001">
    <div class="m"><img src="/images/clear.gif" height=127 width=225 data-src="http://a57.foxnews.com/media2.foxnews.com/BrightCove/694940094001/2017/02/08/225/127/694940094001_5316365115001_Gorsuch--disheartened--by-Trump-s-comments-on-judges.jpg?tl=1&ve=1" alt=""></div> 
    <h3>Gorsuch 'disheartened' by Trump's comments on judges</h3>
  </a>
</div>
</section>

			<section id="technology" class="row">

<header>
    <h2><a href="http://www.foxnews.com/tech.html">Technology</a></h2>
    <p class="more"><a href="http://www.foxnews.com/tech.html">Continue to Technology</a> <span>&rsaquo;</span></p>
</header>
<div class="bkt article-ct">
  <a href="http://www.foxnews.com/tech/2017/02/09/president-trump-gives-twitter-boost-analyst-says.html">
    <div class="m"><img src="/images/clear.gif" height=127 width=225 data-src="http://a57.foxnews.com/www.foxnews.com/content/dam/fox-news/images/2017/02/08/225/127/trump660.jpg?tl=1&ve=1" alt=""></div> 
    <h3>President Trump gives Twitter a boost, analyst says </h3>
  </a>
</div>
<div class="bkt article-ct">
  <a href="http://www.foxnews.com/tech/2017/02/09/wikipedia-bans-editors-from-citing-daily-mail-as-source.html">
    <div class="m"><img src="/images/clear.gif" height=127 width=225 data-src="http://a57.foxnews.com/www.foxnews.com/content/dam/fox-news/images/2017/02/09/225/127/0209-wikipedia.jpg?tl=1&ve=1" alt=""></div> 
    <h3>Wikipedia bans editors from citing Daily Mail as source</h3>
  </a>
</div>
<div class="bkt video-ct">
  <a href="http://video.foxnews.com/v/5316278127001/">
    <div class="m"><img src="/images/clear.gif" height=127 width=225 data-src="http://a57.foxnews.com/media2.foxnews.com/2017/02/08/225/127/digital_detox_020817.jpg?tl=1&ve=1" alt=""></div> 
    <h3>Are you ready for a digital detox?</h3>
  </a>
</div>
<div class="bkt article-ct">
  <a href="http://www.foxnews.com/tech/2017/02/08/new-research-suggests-anyone-can-become-internet-troll.html">
    <div class="m"><img src="/images/clear.gif" height=127 width=225 data-src="http://a57.foxnews.com/www.foxnews.com/content/dam/fox-news/images/2016/03/02/225/127/computergeneric30.jpg?tl=1&ve=1" alt=""></div> 
    <h3>New research suggests anyone can become an Internet troll</h3>
  </a>
</div>
</section>

		 <section id="region" class="block">
			<header>
				<h2>Regional News</h2>
				<h3>&nbsp;</h3>
				<div class="your-region">
					<form method="get" action="#">
						<fieldset>
							<input type="text" name="region" value="Enter zip code" class="error">
							<input type="submit" name="find-region" value="Go">
						</fieldset>
					</form>
				</div><!-- /your-region -->
				<a href="#" class="close">Close</a>
			</header>
			<ul>
			</ul>
		</section><!-- /region -->

		<div class="ad-unit block">
			<div class="advert">
				<div class="ad gpt" id="desktop-300x251"></div>
				 <span class="ad-txt">ADVERTISEMENT</span>
			</div>
		</div><!-- /ad-unit -->

		
			<section id="entertainment" class="row">

<header>
    <h2><a href="http://www.foxnews.com/entertainment/index.html">Entertainment</a></h2>
    <p class="more"><a href="http://www.foxnews.com/entertainment/index.html">Continue to Entertainment</a> <span>&rsaquo;</span></p>
</header>
<div class="bkt article-ct">
  <a href="http://www.foxnews.com/entertainment/2017/02/09/kelly-ripas-bedroom-confession-husband-mark-consuelos-is-mean-after-doing-deed.html">
    <div class="m"><img src="/images/clear.gif" height=127 width=225 data-src="http://a57.foxnews.com/www.foxnews.com/content/dam/fox-news/images/2014/12/24/225/127/kelly-ripa-Mark-Consuelos-876.jpg?tl=1&ve=1" alt=""></div> 
    <h3>Kelly Ripa's bedroom confession: Husband Mark Consuelos is 'mean' after doing the deed</h3>
  </a>
</div>
<div class="bkt article-ct">
  <a href="http://www.foxnews.com/entertainment/2017/02/09/christie-brinkleys-ex-romancing-21-year-old-college-student.html">
    <div class="m"><img src="/images/clear.gif" height=127 width=225 data-src="http://a57.foxnews.com/video.foxnews.com/thumbnails/030612/640/360/225/127/030612_al_court_640.jpg?tl=1&ve=1" alt=""></div> 
    <h3>Christie Brinkley's ex romancing 21-year-old college student?</h3>
  </a>
</div>
<div class="bkt article-ct">
  <a href="http://www.foxnews.com/entertainment/2017/02/09/oprah-winfrey-sells-painting-for-150m.html">
    <div class="m"><img src="/images/clear.gif" height=127 width=225 data-src="http://a57.foxnews.com/media2.foxnews.com/BrightCove/694940094001/2017/01/31/225/127/694940094001_5304891975001_Oprah-joining--60-Minutes-.jpg?tl=1&ve=1" alt=""></div> 
    <h3>Oprah Winfrey sells painting for $150M</h3>
  </a>
</div>
<div class="bkt article-ct">
  <a href="http://www.foxnews.com/entertainment/2017/02/09/youtube-singers-estate-sues-beyonce-for-20m-in-copyright-infringement-suit.html">
    <div class="m"><img src="/images/clear.gif" height=127 width=225 data-src="http://a57.foxnews.com/www.foxnews.com/content/dam/fox-news/images/2016/12/06/225/127/beyonce-grammy.jpg?tl=1&ve=1" alt=""></div> 
    <h3>YouTube singer's estate sues Beyonce for $20M in copyright infringement suit</h3>
  </a>
</div>
</section>

			<section id="business-leaders" class="row">

<header>
    <h2><a href="http://www.foxbusiness.com/business-leaders/index.html">Business Leaders</a></h2>
    <p class="more"><a href="http://www.foxbusiness.com/business-leaders/index.html">Continue to Business Leaders</a> <span>&rsaquo;</span></p>
</header>
<div class="bkt article-ct">
  <a href="http://www.foxbusiness.com/markets/2017/02/09/why-stock-market-under-trump-will-probably-lag-market-under-obama.html">
    <div class="m"><img src="/images/clear.gif" height=127 width=225 data-src="http://a57.foxnews.com/www.foxbusiness.com/content/dam/fox-business/images/2017/02/09/225/127/historic-dji-graph-with-presidents--3028d099b032a510VgnVCM100000d7c1a8c0____.jpg?tl=1&ve=1" alt=""></div> 
    <h3>Why the Stock Market Under Trump Will Probably Lag the Market Under Obama</h3>
  </a>
</div>
<div class="bkt article-ct">
  <a href="http://www.foxbusiness.com/features/2017/02/08/goldman-sachs-adds-investment-management-head-to-partnership-committee.html">
    <div class="m"><img src="/images/clear.gif" height=127 width=225 data-src="http://a57.foxnews.com/www.foxbusiness.com/content/dam/fox-business/images/2017/02/08/225/127/goldman-sachs-sign-rtr-fbn.jpg?tl=1&ve=1" alt=""></div> 
    <h3>Goldman Sachs Adds Investment-Management Head to Partnership Committee</h3>
  </a>
</div>
<div class="bkt article-ct">
  <a href="http://www.foxbusiness.com/politics/2017/02/08/dr-alveda-king-sen-warren-used-king-name-to-stir-up-emotions.html">
    <div class="m"><img src="/images/clear.gif" height=127 width=225 data-src="http://a57.foxnews.com/media.foxbusiness.com/BrightCove/854081161001/201702/1228/225/127/854081161001_5315876225001_Dr--Alveda-King-.jpg?tl=1&ve=1" alt=""></div> 
    <h3>Dr. Alveda King: Sen. Warren Used the King Name to Stir Up Emotions</h3>
  </a>
</div>
<div class="bkt article-ct">
  <a href="http://www.foxbusiness.com/markets/2017/02/08/harley-davidson-ceo-on-trump-meeting-corporate-tax-reform.html">
    <div class="m"><img src="/images/clear.gif" height=127 width=225 data-src="http://a57.foxnews.com/www.foxbusiness.com/content/dam/fox-business/images/2016/04/19/225/127/harley-logo-3.jpg?tl=1&ve=1" alt=""></div> 
    <h3>Harley-Davidson CEO on Trump Meeting, Corporate Tax Reform</h3>
  </a>
</div>
</section>

		 <div class="ad-unit block">
				<div class="advert">
					<div class="ad gpt" data-ad-id="loadtext-300x250"></div>
					<span class="ad-txt">ADVERTISEMENT</span>
				</div>
			</div><!-- /ad-unit -->
			<section id="slideshows-lists" class="block">
				<header>
					<h2>Top Slideshows &amp; Lists</h2>
				</header>
			</section><!-- /slideshows-lists -->




		
			<section id="science" class="row">

<header>
    <h2><a href="http://www.foxnews.com/science/index.html">Science</a></h2>
    <p class="more"><a href="http://www.foxnews.com/science/index.html">Continue to Science</a> <span>&rsaquo;</span></p>
</header>
<div class="bkt video-ct">
    <header>
     <h2><a href="http://www.foxnews.com/science/planet-earth/index.html">Planet Earth</a></h2>
      <p class="more"><a href="http://www.foxnews.com/science/planet-earth/index.html">View all</a><span>&rsaquo;</span></p>
  </header>
  <a href="http://video.foxnews.com/v/5315838508001/">
    <div class="m"><img src="/images/clear.gif" height=127 width=225 data-src="http://a57.foxnews.com/media2.foxnews.com/BrightCove/694940094001/2017/02/08/225/127/694940094001_5315855037001_5315838508001-th.jpg?pubId=694940094001&tl=1&ve=1" alt=""></div> 
    <h3>Conservative group proposes carbon tax, rebate program</h3>
  </a>
</div>
<div class="bkt article-ct">
    <header>
     <h2><a href="http://www.foxnews.com/category/digging-history">Digging History</a></h2>
      <p class="more"><a href="http://www.foxnews.com/category/digging-history">View all</a><span>&rsaquo;</span></p>
  </header>
  <a href="http://www.foxnews.com/science/2017/02/08/was-one-george-washingtons-slaves-until-managed-to-escape.html">
    <div class="m"><img src="/images/clear.gif" height=127 width=225 data-src="http://a57.foxnews.com/www.foxnews.com/content/dam/fox-news/images/feed/newser/2017/02/08/225/127/getimage_mediaid-1104380.jpeg?tl=1&ve=1" alt=""></div> 
    <h3>She was one of George Washington's slaves, until she managed to escape</h3>
  </a>
</div>
<div class="bkt article-ct">
    <header>
     <h2><a href="http://www.foxnews.com/science/air-space/index.html">Air & Space</a></h2>
      <p class="more"><a href="http://www.foxnews.com/science/air-space/index.html">View all</a><span>&rsaquo;</span></p>
  </header>
  <a href="http://www.foxnews.com/science/2017/02/09/first-atomic-blast-reveals-clues-about-moon-formation.html">
    <div class="m"><img src="/images/clear.gif" height=127 width=225 data-src="http://a57.foxnews.com/www.foxnews.com/content/dam/fox-news/images/feed/space-com/2017/02/08/225/127/trinity-fireball.jpg?tl=1&ve=1" alt=""></div> 
    <h3>First atomic blast reveals clues about moon formation </h3>
  </a>
</div>
<div class="bkt video-ct">
    <header>
     <h2><a href="http://www.foxnews.com/science/wild-nature/index.html">Wild Nature</a></h2>
      <p class="more"><a href="http://www.foxnews.com/science/wild-nature/index.html">View all</a><span>&rsaquo;</span></p>
  </header>
  <a href="http://video.foxnews.com/v/5315793506001/">
    <div class="m"><img src="/images/clear.gif" height=127 width=225 data-src="http://a57.foxnews.com/media2.foxnews.com/BrightCove/694940094001/2017/02/08/225/127/694940094001_5315805452001_Incredible-gecko-slips-out-of-its-own-skin-to-survive.jpg?pubId=694940094001&tl=1&ve=1" alt=""></div> 
    <h3>Incredible gecko slips out of its own skin to survive</h3>
  </a>
</div>
</section>

			<section id="us" class="row">

<header>
    <h2><a href="http://www.foxnews.com/us/index.html">US</a></h2>
    <p class="more"><a href="http://www.foxnews.com/us/index.html">Continue to US</a> <span>&rsaquo;</span></p>
</header>
<div class="bkt article-ct">
  <a href="http://www.foxnews.com/us/2017/02/09/protests-erupt-outside-phoenix-ice-office-after-arrest-illegal-immigrant.html">
    <div class="m"><img src="/images/clear.gif" height=127 width=225 data-src="http://a57.foxnews.com/media2.foxnews.com/BrightCove/694940094001/2017/02/09/225/127/694940094001_5316936503001_5316928892001-vs.jpg?tl=1&ve=1" alt=""></div> 
    <h3>Protests erupt outside Phoenix ICE office after arrest of illegal immigrant</h3>
  </a>
</div>
<div class="bkt article-ct">
  <a href="http://www.foxnews.com/us/2017/02/09/us-probes-plane-that-got-too-close-to-air-force-one-report-says.html">
    <div class="m"><img src="/images/clear.gif" height=127 width=225 data-src="http://a57.foxnews.com/media2.foxnews.com/BrightCove/694940094001/2017/01/26/225/127/694940094001_5299077122001_President-Trump-on-Air-Force-One-Very-special-plane.jpg?tl=1&ve=1" alt=""></div> 
    <h3>US probes plane that got too close to Air Force One, report says</h3>
  </a>
</div>
<div class="bkt article-ct">
  <a href="http://www.foxnews.com/us/2017/02/09/major-snowstorm-threatens-to-snarl-commute-for-millions-in-northeast.html">
    <div class="m"><img src="/images/clear.gif" height=127 width=225 data-src="http://a57.foxnews.com/media2.foxnews.com/BrightCove/694940094001/2017/02/09/225/127/694940094001_5316950098001_5316942566001-vs.jpg?tl=1&ve=1" alt=""></div> 
    <h3>Major snowstorm bears down on Northeast; 3,000 flights canceled</h3>
  </a>
</div>
<div class="bkt article-ct">
  <a href="http://www.foxnews.com/us/2017/02/09/oaklands-incoming-police-chief-to-receive-historic-salary.html">
    <div class="m"><img src="/images/clear.gif" height=127 width=225 data-src="http://a57.foxnews.com/www.foxnews.com/content/dam/fox-news/images/2017/02/09/225/127/female-police-chiefs_madr.jpg?tl=1&ve=1" alt=""></div> 
    <h3>Oakland's incoming police chief to receive historic salary</h3>
  </a>
</div>
</section>

		 <div class="advert lm-1">
			<div class="ad gpt" data-ad-id="loadmore-970x250_970x66_728x90"></div>
		</div>

	
	</div><!-- /doc -->

	<footer class="fn">
		<div>
			<div>
				<h2>Sections</h2>
				<ul>
					<li><a href="//www.foxnews.com/">Home</a></li>
					<li><a href="//video.foxnews.com/playlist/featured-editors-picks/">Video</a></li>
					<li><a href="//www.foxnews.com/politics/">Politics</a></li>
					<li><a href="//www.foxnews.com/us/">U.S.</a></li>
					<li><a href="//www.foxnews.com/opinion/">Opinion</a></li>
					<li><a href="//www.foxnews.com/entertainment/">Entertainment</a></li>
					<li><a href="//www.foxnews.com/tech/">Tech</a></li>
					<li><a href="//www.foxnews.com/science/">Science</a></li>
					<li><a href="//www.foxnews.com/health/">Health</a></li>
					<li><a href="//www.foxnews.com/travel/">Travel</a></li>
					<li><a href="//www.foxnews.com/leisure/">Lifestyle</a></li>
					<li><a href="//www.foxnews.com/world/">World</a></li>
					<li><a href="//www.foxnews.com/sports/">Sports</a></li>
					<li><a href="//www.foxnews.com/weather/">Weather</a></li>
				</ul>
			</div>
			<div>
				<h2>Shows</h2>
				<ul>
					<li><a href="//www.foxnews.com/americasnewshq/">America's News HQ</a></li>
					<li><a href="//www.foxnews.com/americasnewsroom/">America's Newsroom</a></li>
					<li><a href="//www.foxnews.com/yourworld/">Cavuto</a></li>
					<li><a href="//www.foxnews.com/on-air/fox-files/">Fox Files</a></li>
					<li><a href="//www.foxnews.com/specials/">Fox News Reporting</a></li>
					<li><a href="//www.foxnews.com/fns/">Fox News Sunday</a></li>
					<li><a href="//www.foxnews.com/foxfriendsfirst">Fox &amp; Friends First</a></li>
					<li><a href="//www.foxnews.com/foxfriends/">Fox &amp; Friends</a></li>
					<li><a href="//www.foxnews.com/on-air/fox-friends-weekend/index.html?page=weekend">Fox &amp; Friends Weekend</a></li>
					<li><a href="//www.foxnews.com/geraldo/">Geraldo Rivera Reports</a></li>
					<li><a href="//www.foxnews.com/hannity/">Hannity</a></li>
                                        <li><a href="//www.foxnews.com/shows/happening-now.html">Happening Now</a></li>

					<li><a href="//www.foxnews.com/on-air/justice-jeanine/index.html">Justice with Judge Jeanine</a></li>
					<li><a href="//www.foxnews.com/shows/l-and-l">Legends &amp; Lies: The Patriots</a></li>
				</ul>
			</div>
			<div>
				<h2>&nbsp;</h2>
				<ul>
					<li><a href="//www.foxnews.com/on-air/media-buzz">#mediabuzz</a></li>
					<li><a href="//www.foxnews.com/on-air/outnumbered/">Outnumbered</a></li>
					<li><a href="//www.foxnews.com/redeye/">Red Eye w/ Tom Shillue</a></li>
					<li><a href="//www.foxnews.com/on-air/shepard-smith/">Shepard Smith Reporting</a></li>
					<li><a href="//www.foxnews.com/on-air/special-report/">Special Report</a></li>
					<li><a href="//www.foxnews.com/on-air/sunday-morning-futures/index.html">Sunday Morning Futures</a></li>
					<li><a href="//www.foxnews.com/costoffreedom/">The Cost of Freedom</a></li>
					<li><a href="//www.foxnews.com/on-air/first-100-days/">The First 100 Days</a></li>
					<li><a href="//www.foxnews.com/on-air/the-five/index.html">The Five</a></li>
                                        <li><a href="//www.foxnews.com/shows/greg-gutfeld-show">The Greg Gutfeld Show</a></li>
					<li><a href="//www.foxnews.com/journal/">The Journal Editorial Report</a></li>
					<li><a href="//www.foxnews.com/on-air/oreilly/">The O'Reilly Factor</a></li>
					<li><a href="//www.foxnews.com/shows/the-property-man/index.html">The Property Man</a></li>
					<li><a href="//www.foxnews.com/on-air/tucker-carlson-tonight/index.html">Tucker Carlson Tonight</a></li>
					<li><a href="//www.foxnews.com/warstories/">War Stories</a></li>
				</ul>
			</div>
			<div>
				<h2>Tools</h2>
				<ul>
					<li><a href="//live.foxnews.com">Live Video</a></li>
					<li><a href="//www.foxnews.com/trending/">Trending</a></li>
					<li><a href="//www.foxnews.com/alerts/subscribe.html">Newsletters</a></li>
					<li><a href="//www.foxnews.com/newsletter-signup/alerts" target="_blank">Alerts</a></li>
					<li><a href="//blogs.foxnews.com/">Blogs</a></li>
					<li><a href="//www.foxnews.com/mobile/">Mobile</a></li>
					<li><a href="//www.foxnews.com/podcasts/">Podcasts</a></li>
					<li><a href="//www.foxnews.com/radio/">Radio</a></li>
					<li><a href="//www.foxnews.com/about/apps-downloads">Apps &amp; Downloads</a></li>
				</ul>
			</div>
			<div>
				<h2>About</h2>
				<ul>
					<li><a href="//www.foxnews.com/on-air/personalities/">On Air Personalities</a></li>
					<li><a href="//careers.foxnews.com/">Careers</a></li>
					<li><a href="//careers.foxnews.com/students">College Students</a></li>
					<li><a href="//www.foxnews.com/foxaroundtheworld/">Fox Around the World</a></li>
					<li><a href="//advertise.foxnews.com" target="_blank">Advertise With Us</a></li>
					<li><a href="//www.foxnews.com/about/terms-of-use">New Terms of Use</a> <a href="//www.foxnews.com/about/terms-new/">(What's New)</a></li>
					<li><a href="//www.foxnews.com/about/privacy-policy/">New Privacy Policy</a></li>
					<li><a href="//www.foxnews.com/about/privacy-policy/#ad-choice">Ad Choices</a></li>
					<li><a href="//help.foxnews.com/index.html">Contact Us</a></li>
					<li><a href="mailto:newsmanager@foxnews.com">Email Newsroom</a></li>
					<li><a href="//help.foxnews.com/index.html">FAQ</a></li>
					<li><a href="//press.foxnews.com/">Media Relations</a></li>
					<li><a href="//www.foxnews.com/closed-captioning">Closed Captioning Policy</a></li>
				</ul>
			</div>
			<div>
				<h2>Follow</h2>
				<ul class="social">
					<li class="fbk"><a href="//www.facebook.com/FoxNews">Facebook</a></li>
					<li class="twt"><a href="//twitter.com/foxnews">Twitter</a></li>
					<li class="gplus"><a href="//www.google.com/+FoxNews">Google+</a></li>
					<li class="lkdin"><a href="//www.linkedin.com/today/foxnews.com">LinkedIn</a></li>
					<li class="rss"><a href="//www.foxnews.com/rss/index.html">RSS</a></li>
					<li class="nwsltr"><a href="//www.foxnews.com/alerts/subscribe.html">Newsletters</a></li>
					<li class="logo"><a href="//www.foxnews.com">Fox News</a></li>
				</ul>
			</div>
			<div class="legal">
				<p class="summary">This material may not be published, broadcast, rewritten, or redistributed. &#169;2017 FOX News Network, LLC. All rights reserved. All market data delayed 20 minutes.</p>
			</div>
		</div>
	</footer><!-- /footer -->



</div><!-- /wrapper -->
<script type="text/javascript" async="async" src="http://widgets.outbrain.com/outbrain.js"></script>
<script type="text/javascript">
	FOX_HP.pageReady();  
	document.cookie = 'surround=' + window.sid + ';  path=/'; 
</script>
<img src="//dbg52463.moatads.com?a=FoxNews" style="display:none;">
<img src="//d5i9o0tpq9sa1.cloudfront.net?a=FoxNews" style="display:none;">

</body>
</html>