-
Notifications
You must be signed in to change notification settings - Fork 4
/
FOXNEWS_20130204_220000_The_Five.html
2707 lines (2548 loc) · 199 KB
/
FOXNEWS_20130204_220000_The_Five.html
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 lang="en">
<!-- __ _ _ _ __| |_ (_)__ _____
/ _` | '_/ _| ' \| |\ V / -_)
\__,_|_| \__|_||_|_| \_/\___| -->
<head>
<title>The Five : FOXNEWS : February 4, 2013 5:00pm-6:00pm EST : Free Streaming : Internet Archive</title>
<meta name="viewport"
content="height=device-height, user-scalable=0, initial-scale=0.9999, minimum-scale=0.9999, maximum-scale=0.9999"/>
<meta name="apple-mobile-web-app-capable" content="yes" />
<script>window.archive_setup=[]</script>
<script>window.tv_setup=[]</script>
<script src="//archive.org/includes/jquery-1.10.2.min.js?v1.10.2" type="text/javascript"></script>
<link href="/includes/redmond/jquery-ui-1.10.3.min.css" rel="stylesheet" type="text/css"/>
<script src="/includes/jquery-ui-1.10.3.min.js?v1.10.3" type="text/javascript"></script>
<script src="//archive.org/includes/analytics.js?v=8dcf4b2" type="text/javascript"></script>
<script src="//archive.org/includes/bootstrap.min.js?v3.0.0" type="text/javascript"></script>
<script src="//archive.org/includes/polyfill.min.js?v=8dcf4b2" type="text/javascript"></script>
<script src="/jw/6.8/jwplayer.js?v6.8" type="text/javascript"></script>
<script src="https://archive.org/includes/node_modules/react/dist/react.js?v15.1.0" type="text/javascript"></script>
<script src="https://archive.org/includes/node_modules/react-dom/dist/react-dom.js?v15.1.0" type="text/javascript"></script>
<script src="https://archive.org/includes/play.min.js?v=8dcf4b2" type="text/javascript"></script>
<script src="https://archive.org/includes/playset.min.js?v=8dcf4b2" type="text/javascript"></script>
<script src="https://archive.org/includes/archive.min.js?v=8dcf4b2" type="text/javascript"></script>
<script src="https://archive.org/includes/tv.min.js?v=8dcf4b2" type="text/javascript"></script>
<meta name="description" content="News/Business. (2013) New."/>
<meta property="og:title" content="The Five : FOXNEWS : February 4, 2013 5:00pm-6:00pm EST : Free Streaming : Internet Archive"/>
<meta property="og:description" content="News/Business. (2013) New."/>
<meta property="og:site_name" content="Internet Archive"/>
<meta property="og:type" content="video.movie"/>
<meta property="og:image" content="https://archive.org/download/FOXNEWS_20130204_220000_The_Five/FOXNEWS_20130204_220000_The_Five.thumbs/FOXNEWS_20130204_220000_The_Five_000045.jpg"/>
<meta property="og:video" content="https://archive.org/download/FOXNEWS_20130204_220000_The_Five/FOXNEWS_20130204_220000_The_Five.mp4"/>
<meta property="og:video:width" content="640"/>
<meta property="og:video:height" content="480"/>
<meta property="video:duration" content="3600"/>
<meta property="og:video:type" content="video/mp4"/>
<meta property="twitter:card" content="player"/>
<meta property="twitter:site" content="@internetarchive"/>
<meta property="twitter:account_id" content="18957805"/>
<meta property="twitter:description" content="News/Business. (2013) New."/>
<meta property="twitter:title" content="The Five : FOXNEWS : February 4, 2013 5:00pm-6:00pm EST : Free Streaming : Internet Archive"/>
<meta property="twitter:image" content="https://archive.org/services/img/FOXNEWS_20130204_220000_The_Five&scale=2"/>
<meta property="twitter:url" content="https://archive.org/details/FOXNEWS_20130204_220000_The_Five"/>
<meta property="twitter:player" content="https://archive.org/embed/FOXNEWS_20130204_220000_The_Five/FOXNEWS_20130204_220000_The_Five.mpg"/>
<meta property="twitter:player:width" content="640"/>
<meta property="twitter:player:height" content="480"/>
<meta property="twitter:player:stream" content="https://archive.org/download/FOXNEWS_20130204_220000_The_Five/FOXNEWS_20130204_220000_The_Five.mp4"/>
<meta property="twitter:player:stream:content_type" content="video/mp4; codecs="avc1.42E01E1, mp4a.40.2""/>
<link rel="canonical" href="https://archive.org/details/FOXNEWS_20130204_220000_The_Five">
<link href="//archive.org/includes/tv.min.css?v=8dcf4b2" rel="stylesheet" type="text/css"/>
<link rel="SHORTCUT ICON" href="https://archive.org/images/glogo.jpg"/>
</head>
<body class="navia navia ia-module tv tvdetails clipstream navbar-fixed-position navbar-no-margin-bottom">
<a href="#maincontent" class="hidden-for-screen-readers">Skip to main content</a>
<!-- Wraps all page content -->
<div id="wrap"
>
<div id="navwrap1">
<div id="navwrap2">
<div id="nav-tophat" class="collapse">
<div class="row toprow web" style="max-width:1000px;margin:auto;">
<div class="col-xs-12">
<div class="wayback-txt">
Search the history of over 308 billion <a style="display:inline"
href="https://blog.archive.org/2016/10/23/defining-web-pages-web-sites-and-web-captures/"
>web pages</a> on the Internet.
</div>
<div class="roundbox7 wayback-main">
<div class="row">
<div class="col-sm-6" style="padding-left:0; padding-right:0;">
<a style="padding-bottom:0" href="https://archive.org/web/"
><img src="https://archive.org/images/WaybackLogoSmall.png" alt="Wayback Machine"/></a>
</div>
<div class="col-sm-6" style="padding-top:13px;">
<form style="position:relative;">
<span class="iconochive-search" aria-hidden="true"></span><span class="sr-only">search</span> <label for="nav-wb-url" class="sr-only">Search the Wayback Machine</label>
<input id="nav-wb-url" class="form-control input-sm roundbox20" type="text"
placeholder="enter URL or keywords" name="url" autocomplete="off"
onclick="$(this).css('padding-left','').parent().find('.iconochive-search').hide()"/>
</form>
</div>
</div><!--/.row-->
</div><!--/.wayback-main-->
</div>
</div><!--./row-->
<div class="row toprow fivecolumns texts">
<div class="col-sm-2 col-xs-7 col-sm-push-4">
<div class="linx">
<h5>Featured</h5>
<a href="https://archive.org/details/texts"><span class="iconochive-texts" aria-hidden="true"></span><span class="sr-only">texts</span> All Texts</a>
<a href="https://archive.org/search.php?query=mediatype:texts&sort=-publicdate"
><span class="iconochive-latest" aria-hidden="true"></span><span class="sr-only">latest</span> This Just In</a>
<a href="https://archive.org/details/smithsonian" title="Smithsonian Libraries">Smithsonian Libraries</a> <a href="https://archive.org/details/fedlink" title="FEDLINK (US)">FEDLINK (US)</a> <a href="https://archive.org/details/genealogy" title="Genealogy">Genealogy</a> <a href="https://archive.org/details/lincolncollection" title="Lincoln Collection">Lincoln Collection</a> <a href="https://archive.org/details/additional_collections" title="Additional Collections">Additional Collections</a> </div>
</div><!--/.col-sm-2-->
<div class="col-sm-2 col-xs-5 col-sm-pull-2">
<div class="widgets">
<center class="items_list"> <div class="items_list_img">
<a
href="https://archive.org/details/texts"
style="background-image: url('https://archive.org/services/img/texts');"
aria-hidden="true"
data-event-click-tracking="DetailsPage|CollectionLink"
></a>
</div>
<a class="stealth boxy-label" data-event-click-tracking="DetailsPage|CollectionLink" href="https://archive.org/details/texts">eBooks & Texts</a></center> </div><!--/.widgets-->
</div><!--/.col-sm-2-->
<div class="col-sm-2 col-xs-7 col-sm-push-2">
<div class="linx ">
<h5>Top</h5>
<a href="https://archive.org/details/americana" title="American Libraries">American Libraries</a> <a href="https://archive.org/details/toronto" title="Canadian Libraries">Canadian Libraries</a> <a href="https://archive.org/details/universallibrary" title="Universal Library">Universal Library</a> <a href="https://archive.org/details/opensource" title="Community Texts">Community Texts</a> <a href="https://archive.org/details/gutenberg" title="Project Gutenberg">Project Gutenberg</a> <a href="https://archive.org/details/biodiversity" title="Biodiversity Heritage Library">Biodiversity Heritage Library</a> <a href="https://archive.org/details/iacl" title="Children's Library">Children's Library</a> </div>
</div><!--/.col-sm-2-->
<div class="col-sm-2 col-xs-5 col-sm-pull-4">
<div class="widgets">
<center>
<a href="https://openlibrary.org"><img class="img-responsive" style="margin-bottom:15px" src="https://archive.org/images/widgetOL.png"/><b>Open Library</b></a></center>
</div><!--/.widgets-->
</div><!--/.col-sm-2-->
<div class="col-sm-2 col-xs-7">
<div class="linx linx-topped">
<a href="https://archive.org/details/plattsburghstatenormalschoolyearbooks" title="plattsburghstatenormalschoolyearbooks">plattsburghstatenormalschoolyearbooks</a> <a href="https://archive.org/details/porthuroncentralhsyearbooks" title="porthuroncentralhsyearbooks">porthuroncentralhsyearbooks</a> <a href="https://archive.org/details/newinternationayearbooks" title="newinternationayearbooks">newinternationayearbooks</a> <a href="https://archive.org/details/lowellhsyearbooks" title="lowellhsyearbooks">lowellhsyearbooks</a> <a href="https://archive.org/details/fortordyearbooks" title="fortordyearbooks">fortordyearbooks</a> <a href="https://archive.org/details/stateteacherscollegeatlowellyearbooks" title="stateteacherscollegeatlowellyearbooks">stateteacherscollegeatlowellyearbooks</a> <a href="https://archive.org/details/lowelldistricthsyearbooks" title="lowelldistricthsyearbooks">lowelldistricthsyearbooks</a> </div>
</div><!--/.col-sm-2-->
</div><!--/.row-->
<div class="row toprow fivecolumns movies">
<div class="col-sm-2 col-xs-7 col-sm-push-4">
<div class="linx">
<h5>Featured</h5>
<a href="https://archive.org/details/movies"><span class="iconochive-movies" aria-hidden="true"></span><span class="sr-only">movies</span> All Video</a>
<a href="https://archive.org/search.php?query=mediatype:movies&sort=-publicdate"
><span class="iconochive-latest" aria-hidden="true"></span><span class="sr-only">latest</span> This Just In</a>
<a href="https://archive.org/details/prelinger" title="Prelinger Archives">Prelinger Archives</a> <a href="https://archive.org/details/democracy_now_vid" title="Democracy Now!">Democracy Now!</a> <a href="https://archive.org/details/occupywallstreet" title="Occupy Wall Street">Occupy Wall Street</a> <a href="https://archive.org/details/nsa" title="TV NSA Clip Library">TV NSA Clip Library</a> </div>
</div><!--/.col-sm-2-->
<div class="col-sm-2 col-xs-5 col-sm-pull-2">
<div class="widgets">
<center class="items_list"> <div class="items_list_img">
<a
href="https://archive.org/details/tv"
style="background-image: url('https://archive.org/services/img/tv');"
aria-hidden="true"
data-event-click-tracking="DetailsPage|CollectionLink"
></a>
</div>
<a class="stealth boxy-label" data-event-click-tracking="DetailsPage|CollectionLink" href="https://archive.org/details/tv">TV News</a></center> </div><!--/.widgets-->
</div><!--/.col-sm-2-->
<div class="col-sm-2 col-xs-7 col-sm-push-2">
<div class="linx ">
<h5>Top</h5>
<a href="https://archive.org/details/animationandcartoons" title="Animation & Cartoons">Animation & Cartoons</a> <a href="https://archive.org/details/artsandmusicvideos" title="Arts & Music">Arts & Music</a> <a href="https://archive.org/details/opensource_movies" title="Community Video">Community Video</a> <a href="https://archive.org/details/computersandtechvideos" title="Computers & Technology">Computers & Technology</a> <a href="https://archive.org/details/culturalandacademicfilms" title="Cultural & Academic Films">Cultural & Academic Films</a> <a href="https://archive.org/details/ephemera" title="Ephemeral Films">Ephemeral Films</a> <a href="https://archive.org/details/moviesandfilms" title="Movies">Movies</a> </div>
</div><!--/.col-sm-2-->
<div class="col-sm-2 col-xs-5 col-sm-pull-4">
<div class="widgets">
<center class="items_list"> <div class="items_list_img">
<a
href="https://archive.org/details/911"
style="background-image: url('https://archive.org/services/img/911');"
aria-hidden="true"
data-event-click-tracking="DetailsPage|CollectionLink"
></a>
</div>
<a class="stealth boxy-label" data-event-click-tracking="DetailsPage|CollectionLink" href="https://archive.org/details/911">Understanding 9/11</a></center> </div><!--/.widgets-->
</div><!--/.col-sm-2-->
<div class="col-sm-2 col-xs-7">
<div class="linx linx-topped">
<a href="https://archive.org/details/newsandpublicaffairs" title="News & Public Affairs">News & Public Affairs</a> <a href="https://archive.org/details/spiritualityandreligion" title="Spirituality & Religion">Spirituality & Religion</a> <a href="https://archive.org/details/sports" title="Sports Videos">Sports Videos</a> <a href="https://archive.org/details/television" title="Television">Television</a> <a href="https://archive.org/details/gamevideos" title="Videogame Videos">Videogame Videos</a> <a href="https://archive.org/details/vlogs" title="Vlogs">Vlogs</a> <a href="https://archive.org/details/youth_media" title="Youth Media">Youth Media</a> </div>
</div><!--/.col-sm-2-->
</div><!--/.row-->
<div class="row toprow fivecolumns audio">
<div class="col-sm-2 col-xs-7 col-sm-push-4">
<div class="linx">
<h5>Featured</h5>
<a href="https://archive.org/details/audio"><span class="iconochive-audio" aria-hidden="true"></span><span class="sr-only">audio</span> All Audio</a>
<a href="https://archive.org/search.php?query=mediatype:audio&sort=-publicdate"
><span class="iconochive-latest" aria-hidden="true"></span><span class="sr-only">latest</span> This Just In</a>
<a href="https://archive.org/details/GratefulDead" title="Grateful Dead">Grateful Dead</a> <a href="https://archive.org/details/netlabels" title="Netlabels">Netlabels</a> <a href="https://archive.org/details/oldtimeradio" title="Old Time Radio">Old Time Radio</a> <a href="https://archive.org/details/78rpm" title="78 RPMs and Cylinder Recordings">78 RPMs and Cylinder Recordings</a> </div>
</div><!--/.col-sm-2-->
<div class="col-sm-2 col-xs-5 col-sm-pull-2">
<div class="widgets">
<center class="items_list"> <div class="items_list_img">
<a
href="https://archive.org/details/etree"
style="background-image: url('https://archive.org/services/img/etree');"
aria-hidden="true"
data-event-click-tracking="DetailsPage|CollectionLink"
></a>
</div>
<a class="stealth boxy-label" data-event-click-tracking="DetailsPage|CollectionLink" href="https://archive.org/details/etree">Live Music Archive</a></center> </div><!--/.widgets-->
</div><!--/.col-sm-2-->
<div class="col-sm-2 col-xs-7 col-sm-push-2">
<div class="linx ">
<h5>Top</h5>
<a href="https://archive.org/details/audio_bookspoetry" title="Audio Books & Poetry">Audio Books & Poetry</a> <a href="https://archive.org/details/opensource_audio" title="Community Audio">Community Audio</a> <a href="https://archive.org/details/audio_tech" title="Computers & Technology">Computers & Technology</a> <a href="https://archive.org/details/audio_music" title="Music, Arts & Culture">Music, Arts & Culture</a> <a href="https://archive.org/details/audio_news" title="News & Public Affairs">News & Public Affairs</a> <a href="https://archive.org/details/audio_foreign" title="Non-English Audio">Non-English Audio</a> <a href="https://archive.org/details/audio_podcast" title="Podcasts">Podcasts</a> </div>
</div><!--/.col-sm-2-->
<div class="col-sm-2 col-xs-5 col-sm-pull-4">
<div class="widgets">
<center class="items_list"> <div class="items_list_img">
<a
href="https://archive.org/details/librivoxaudio"
style="background-image: url('https://archive.org/services/img/librivoxaudio');"
aria-hidden="true"
data-event-click-tracking="DetailsPage|CollectionLink"
></a>
</div>
<a class="stealth boxy-label" data-event-click-tracking="DetailsPage|CollectionLink" href="https://archive.org/details/librivoxaudio">Librivox Free Audiobook</a></center> </div><!--/.widgets-->
</div><!--/.col-sm-2-->
<div class="col-sm-2 col-xs-7">
<div class="linx linx-topped">
<a href="https://archive.org/details/radioprograms" title="Radio Programs">Radio Programs</a> <a href="https://archive.org/details/audio_religion" title="Spirituality & Religion">Spirituality & Religion</a> </div>
</div><!--/.col-sm-2-->
</div><!--/.row-->
<div class="row toprow fivecolumns software">
<div class="col-sm-2 col-xs-7 col-sm-push-4">
<div class="linx">
<h5>Featured</h5>
<a href="https://archive.org/details/software"><span class="iconochive-software" aria-hidden="true"></span><span class="sr-only">software</span> All Software</a>
<a href="https://archive.org/search.php?query=mediatype:software&sort=-publicdate"
><span class="iconochive-latest" aria-hidden="true"></span><span class="sr-only">latest</span> This Just In</a>
<a href="https://archive.org/details/tosec" title="Old School Emulation">Old School Emulation</a> <a href="https://archive.org/details/softwarelibrary_msdos_games" title="MS-DOS Games">MS-DOS Games</a> <a href="https://archive.org/details/historicalsoftware" title="Historical Software">Historical Software</a> <a href="https://archive.org/details/classicpcgames" title="Classic PC Games">Classic PC Games</a> <a href="https://archive.org/details/softwarelibrary" title="Software Library">Software Library</a> </div>
</div><!--/.col-sm-2-->
<div class="col-sm-2 col-xs-5 col-sm-pull-2">
<div class="widgets">
<center class="items_list"> <div class="items_list_img">
<a
href="https://archive.org/details/internetarcade"
style="background-image: url('https://archive.org/services/img/internetarcade');"
aria-hidden="true"
data-event-click-tracking="DetailsPage|CollectionLink"
></a>
</div>
<a class="stealth boxy-label" data-event-click-tracking="DetailsPage|CollectionLink" href="https://archive.org/details/internetarcade">Internet Arcade</a></center> </div><!--/.widgets-->
</div><!--/.col-sm-2-->
<div class="col-sm-2 col-xs-7 col-sm-push-2">
<div class="linx ">
<h5>Top</h5>
<a href="https://archive.org/details/open_source_software" title="Community Software">Community Software</a> <a href="https://archive.org/details/softwarelibrary_msdos" title="MS-DOS">MS-DOS</a> <a href="https://archive.org/details/cd-roms" title="CD-ROM Software">CD-ROM Software</a> <a href="https://archive.org/details/softwaresites" title="Software Sites">Software Sites</a> <a href="https://archive.org/details/tucows" title="Tucows Software Library">Tucows Software Library</a> <a href="https://archive.org/details/cdromsoftware" title="CD-ROM Software Library">CD-ROM Software Library</a> <a href="https://archive.org/details/apkarchive" title="APK">APK</a> </div>
</div><!--/.col-sm-2-->
<div class="col-sm-2 col-xs-5 col-sm-pull-4">
<div class="widgets">
<center class="items_list"> <div class="items_list_img">
<a
href="https://archive.org/details/consolelivingroom"
style="background-image: url('https://archive.org/services/img/consolelivingroom');"
aria-hidden="true"
data-event-click-tracking="DetailsPage|CollectionLink"
></a>
</div>
<a class="stealth boxy-label" data-event-click-tracking="DetailsPage|CollectionLink" href="https://archive.org/details/consolelivingroom">Console Living Room</a></center> </div><!--/.widgets-->
</div><!--/.col-sm-2-->
<div class="col-sm-2 col-xs-7">
<div class="linx linx-topped">
<a href="https://archive.org/details/cdbbsarchive" title="Shareware CD-ROMs">Shareware CD-ROMs</a> <a href="https://archive.org/details/vintagesoftware" title="Vintage Software">Vintage Software</a> <a href="https://archive.org/details/doom-cds" title="DOOM Level CD">DOOM Level CD</a> <a href="https://archive.org/details/softwarelibrary_zx_spectrum" title="ZX Spectrum">ZX Spectrum</a> <a href="https://archive.org/details/zx_spectrum_library_games" title="ZX Spectrum Library: Games">ZX Spectrum Library: Games</a> <a href="https://archive.org/details/vectrex" title="Vectrex">Vectrex</a> <a href="https://archive.org/details/atari_2600_library" title="Atari 2600">Atari 2600</a> </div>
</div><!--/.col-sm-2-->
</div><!--/.row-->
<div class="row toprow fivecolumns image">
<div class="col-sm-2 col-xs-7 col-sm-push-4">
<div class="linx">
<h5>Featured</h5>
<a href="https://archive.org/details/image"><span class="iconochive-image" aria-hidden="true"></span><span class="sr-only">image</span> All Image</a>
<a href="https://archive.org/search.php?query=mediatype:image&sort=-publicdate"
><span class="iconochive-latest" aria-hidden="true"></span><span class="sr-only">latest</span> This Just In</a>
<a href="https://archive.org/details/flickrcommons" title="Flickr Commons">Flickr Commons</a> <a href="https://archive.org/details/flickr-ows" title="Occupy Wall Street Flickr">Occupy Wall Street Flickr</a> <a href="https://archive.org/details/coverartarchive" title="Cover Art">Cover Art</a> <a href="https://archive.org/details/maps_usgs" title="USGS Maps">USGS Maps</a> </div>
</div><!--/.col-sm-2-->
<div class="col-sm-2 col-xs-5 col-sm-pull-2">
<div class="widgets">
<center class="items_list"> <div class="items_list_img">
<a
href="https://archive.org/details/metropolitanmuseumofart-gallery"
style="background-image: url('https://archive.org/services/img/metropolitanmuseumofart-gallery');"
aria-hidden="true"
data-event-click-tracking="DetailsPage|CollectionLink"
></a>
</div>
<a class="stealth boxy-label" data-event-click-tracking="DetailsPage|CollectionLink" href="https://archive.org/details/metropolitanmuseumofart-gallery">Metropolitan Museum</a></center> </div><!--/.widgets-->
</div><!--/.col-sm-2-->
<div class="col-sm-2 col-xs-7 col-sm-push-2">
<div class="linx ">
<h5>Top</h5>
<a href="https://archive.org/details/nasa">NASA Images</a> <a href="https://archive.org/details/solarsystemcollection">Solar System Collection</a> <a href="https://archive.org/details/amesresearchcenterimagelibrary">Ames Research Center</a> </div>
</div><!--/.col-sm-2-->
<div class="col-sm-2 col-xs-5 col-sm-pull-4">
<div class="widgets">
<center class="items_list"> <div class="items_list_img">
<a
href="https://archive.org/details/brooklynmuseum"
style="background-image: url('https://archive.org/services/img/brooklynmuseum');"
aria-hidden="true"
data-event-click-tracking="DetailsPage|CollectionLink"
></a>
</div>
<a class="stealth boxy-label" data-event-click-tracking="DetailsPage|CollectionLink" href="https://archive.org/details/brooklynmuseum">Brooklyn Museum</a></center> </div><!--/.widgets-->
</div><!--/.col-sm-2-->
<div class="col-sm-2 col-xs-7">
<div class="linx linx-topped">
</div>
</div><!--/.col-sm-2-->
</div><!--/.row-->
</div><!--/#nav-tophat-->
<div class="navbar navbar-inverse navbar-static-top" role="navigation">
<div id="nav-tophat-helper" class="hidden-xs"></div>
<ul class="nav navbar-nav navbar-main">
<li class="dropdown dropdown-ia pull-left">
<a title="Web" class="navia-link web" data-top-kind="web"
href="https://archive.org/web/" data-toggle="tooltip"
target="_top" data-placement="bottom"><span class="iconochive-web" aria-hidden="true"></span><span class="sr-only">web</span></a>
</li>
<li class="dropdown dropdown-ia pull-left">
<a title="Texts" class="navia-link texts" data-top-kind="texts"
href="https://archive.org/details/texts" data-toggle="tooltip"
target="_top" data-placement="bottom"><span class="iconochive-texts" aria-hidden="true"></span><span class="sr-only">texts</span></a>
</li>
<li class="dropdown dropdown-ia pull-left">
<a title="Video" class="navia-link movies" data-top-kind="movies"
href="https://archive.org/details/movies" data-toggle="tooltip"
target="_top" data-placement="bottom"><span class="iconochive-movies" aria-hidden="true"></span><span class="sr-only">movies</span></a>
</li>
<li class="dropdown dropdown-ia pull-left">
<a title="Audio" class="navia-link audio" data-top-kind="audio"
href="https://archive.org/details/audio" data-toggle="tooltip"
target="_top" data-placement="bottom"><span class="iconochive-audio" aria-hidden="true"></span><span class="sr-only">audio</span></a>
</li>
<li class="dropdown dropdown-ia pull-left">
<a title="Software" class="navia-link software" data-top-kind="software"
href="https://archive.org/details/software" data-toggle="tooltip"
target="_top" data-placement="bottom"><span class="iconochive-software" aria-hidden="true"></span><span class="sr-only">software</span></a>
</li>
<li class="dropdown dropdown-ia pull-left rightmost">
<a title="Image" class="navia-link image" data-top-kind="image"
href="https://archive.org/details/image" data-toggle="tooltip"
target="_top" data-placement="bottom"><span class="iconochive-image" aria-hidden="true"></span><span class="sr-only">image</span></a>
</li>
<li class="navbar-brand-li"><a class="navbar-brand" href="https://archive.org/"
target="_top"><span class="iconochive-logo" aria-hidden="true"></span><span class="sr-only">logo</span></a></li>
<li class="nav-hamburger dropdown dropdown-ia pull-right hidden-sm hidden-md hidden-lg">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse"
data-target="#nav-hamburger-menu" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<div class="navbar-collapse collapse" id="nav-hamburger-menu" aria-expanded="false">
<ul id="" class="nav navbar-nav">
<li><a target="_top" data-event-click-tracking="TopNav|AboutLink" href="https://archive.org/about/">ABOUT</a></li>
<li><a target="_top" data-event-click-tracking="TopNav|ContactLink" href="https://archive.org/about/contact.php">CONTACT</a></li>
<li><a target="_top" data-event-click-tracking="TopNav|BlogLink" href="//blog.archive.org">BLOG</a></li>
<li><a target="_top" data-event-click-tracking="TopNav|ProjectsLink" href="https://archive.org/projects">PROJECTS</a></li>
<li><a target="_top" data-event-click-tracking="TopNav|HelpLink" href="https://archive.org/about/faqs.php">HELP</a></li>
<li><a target="_top" data-event-click-tracking="TopNav|DonateLink" href="https://archive.org/donate">DONATE</a></li>
<li><a target="_top" data-event-click-tracking="TopNav|JobsLink" href="https://archive.org/about/jobs.php">JOBS</a></li>
<li><a target="_top" data-event-click-tracking="TopNav|VolunteerLink" href="https://archive.org/about/volunteerpositions.php">VOLUNTEER</a></li>
<li><a target="_top" data-event-click-tracking="TopNav|PeopleLink" href="https://archive.org/about/bios.php">PEOPLE</a></li>
</ul>
</div><!-- /.navbar-collapse -->
</div>
</div><!-- /.container-fluid -->
</li>
<li class="dropdown dropdown-ia pull-right">
<a href="https://archive.org/create" _target="top" data-toggle="tooltip" data-placement="bottom"
title="Upload"><span class="iconochive-upload" aria-hidden="true"></span><span class="sr-only">upload</span></a>
</li>
<li class="dropdown dropdown-ia pull-right leftmost">
<a href="https://archive.org/account/login.php" style="padding-right:0" _target="top"
><span class="iconochive-person" aria-hidden="true"></span><span class="sr-only">person</span><span class="hidden-xs-span">SIGN IN</span></a>
</li>
</ul>
<ul id="nav-abouts" class="">
<li><a target="_top" data-event-click-tracking="TopNav|AboutLink" href="https://archive.org/about/">ABOUT</a></li>
<li><a target="_top" data-event-click-tracking="TopNav|ContactLink" href="https://archive.org/about/contact.php">CONTACT</a></li>
<li><a target="_top" data-event-click-tracking="TopNav|BlogLink" href="//blog.archive.org">BLOG</a></li>
<li><a target="_top" data-event-click-tracking="TopNav|ProjectsLink" href="https://archive.org/projects">PROJECTS</a></li>
<li><a target="_top" data-event-click-tracking="TopNav|HelpLink" href="https://archive.org/about/faqs.php">HELP</a></li>
<li><a target="_top" data-event-click-tracking="TopNav|DonateLink" href="https://archive.org/donate">DONATE</a></li>
<li><a target="_top" data-event-click-tracking="TopNav|JobsLink" href="https://archive.org/about/jobs.php">JOBS</a></li>
<li><a target="_top" data-event-click-tracking="TopNav|VolunteerLink" href="https://archive.org/about/volunteerpositions.php">VOLUNTEER</a></li>
<li><a target="_top" data-event-click-tracking="TopNav|PeopleLink" href="https://archive.org/about/bios.php">PEOPLE</a></li>
</ul>
</div><!--/.navbar-->
</div><!--#navwrap1-->
</div><!--#navwrap2-->
<!-- Begin page content -->
<div class="container container-ia">
<a name="maincontent" id="maincontent"></a>
<!--HTML-->
</div><!--/.container-ia-->
</div><!--/#wrap-->
<h1 id="tvbanner">
<a class="stealth" href="/details/tv" data-toggle="tooltip" title="TV News Archive" data-placement="right">
<span class="iconochive-tv" aria-hidden="true"></span><span class="sr-only">tv</span> </a>
<a href="http://www.foxnews.com/on-air/the-five/index.html">The Five</a> FOX News February 4, 2013 5:00pm-6:00pm EST </h1>
<div id="jw6wrap" class="tvhid">
<div><div id="jw6"></div></div>
</div><!--/#jw6wrap-->
<div id="jwQwrap" class="tvhid">
<div><div id="jwQ"></div></div>
</div><!--/#jwQwrap-->
<div id="cols" unselectable="on" class="nosel">
<div class="colspacer">
<div class="timeline"></div>
</div><div class="tvcol">
<div class="timeline"></div>
<div class="timedot"></div>
<div class="sniptitle">
5:00 pm </div>
<div class="snipshare">
<a title="Share, embed, or refine this clip!" alt="Share, embed, or refine this clip!"
data-toggle="tooltip" data-placement="bottom"
onclick="return TVQ.sharing_clicked(this,0)"
href="/start/0/end/60"><div class="share-icon"> </div></a>
</div><!--/.snipshare-->
<div class="tvcolin">
<div class="coltop">
<div class="th">
<div class="ltrbx"></div><div class="ltrbx"></div>
<a href="/start/0/end/60" data-toggle="tooltip" data-placement="bottom"
title="Play one minute from “The Five”, starting at 5:00 pm"
onclick="return TV2.col_clicked(0)">
<img src="//ia601707.us.archive.org/22/items/FOXNEWS_20130204_220000_The_Five/FOXNEWS_20130204_220000_The_Five.thumbs/FOXNEWS_20130204_220000_The_Five_000001.jpg"/>
</a>
</div>
</div><!--/.coltop-->
<div class="col-y-0">
<div class="snippet">
<div class="snipin nosel" unselectable="on">
>> breaking news in alabama where a 5-year-old has been held hostage in a under ground bunker for five days. police are ready to make an announcement in the case. jonathan is live. >> significant developments. we expect to hear confirmation from authorities in 5 to 10 minutes. we are hearing from a law enforcement official telling fox that the boy, the 5-year-old boy who has been held in the under ground bunker in the area you see behind me coming up on 7 days, that he has been released and that he is, quote, okay. the same law enforcement official also saying that the </div>
</div><!--/.snippet-->
</div><!--/.col-y-0-->
</div><!--/.tvcolin-->
</div><!--/.tvcol--><div class="colspacer">
<div class="timeline"></div></div><div class="tvcol">
<div class="timeline"></div>
<div class="timedot"></div>
<div class="sniptitle">
5:01 pm </div>
<div class="snipshare">
<a title="Share, embed, or refine this clip!" alt="Share, embed, or refine this clip!"
data-toggle="tooltip" data-placement="bottom"
onclick="return TVQ.sharing_clicked(this,1)"
href="/start/60/end/120"><div class="share-icon"> </div></a>
</div><!--/.snipshare-->
<div class="tvcolin">
<div class="coltop">
<div class="th">
<div class="ltrbx"></div><div class="ltrbx"></div>
<a href="/start/60/end/120" data-toggle="tooltip" data-placement="bottom"
title="Play one minute from “The Five”, starting at 5:01 pm"
onclick="return TV2.col_clicked(1)">
<img src="//ia601707.us.archive.org/22/items/FOXNEWS_20130204_220000_The_Five/FOXNEWS_20130204_220000_The_Five.thumbs/FOXNEWS_20130204_220000_The_Five_000075.jpg"/>
</a>
</div>
</div><!--/.coltop-->
<div class="col-y-0">
<div class="snippet">
<div class="snipin nosel" unselectable="on">
suspect, 65-year-old jimmy lee dykes who had been -- allegedly holding this boy in his backyard bunker all this time, that the suspect in the case is dead. kimberly, all of this began last tuesday afternoon. the boy was riding home on a school bus in this neighborhood, in this area where i am when a gunman boarded the bus, the bus driver positioned himself between the gunman and the children. the gunman opened fire fatally wounding mr. poland and one of the children was taken hostage. that child being that 5-year-old brought to a backyard bunker in the backyard of this suspect jimmy lee dykes, a 65-year-old who neighbors describe as very territorial someone who would become violent if neighbors or </div>
</div><!--/.snippet-->
</div><!--/.col-y-0-->
</div><!--/.tvcolin-->
</div><!--/.tvcol--><div class="colspacer">
<div class="timeline"></div></div><div class="tvcol">
<div class="timeline"></div>
<div class="timedot"></div>
<div class="sniptitle">
5:02 pm </div>
<div class="snipshare">
<a title="Share, embed, or refine this clip!" alt="Share, embed, or refine this clip!"
data-toggle="tooltip" data-placement="bottom"
onclick="return TVQ.sharing_clicked(this,2)"
href="/start/120/end/180"><div class="share-icon"> </div></a>
</div><!--/.snipshare-->
<div class="tvcolin">
<div class="coltop">
<div class="th">
<div class="ltrbx"></div><div class="ltrbx"></div>
<a href="/start/120/end/180" data-toggle="tooltip" data-placement="bottom"
title="Play one minute from “The Five”, starting at 5:02 pm"
onclick="return TV2.col_clicked(2)">
<img src="//ia601707.us.archive.org/22/items/FOXNEWS_20130204_220000_The_Five/FOXNEWS_20130204_220000_The_Five.thumbs/FOXNEWS_20130204_220000_The_Five_000135.jpg"/>
</a>
</div>
</div><!--/.coltop-->
<div class="col-y-0">
<div class="snippet">
<div class="snipin nosel" unselectable="on">
even a dog would venture anywhere close to his property. neighbors saying he harbored very strong anti government views. through out the standoff that ensued authorities kept a long line of communication with the suspect 24-hours a day through a pvc pipe that was providing ventilation from the surface down into under ground bunker. authorities releasing very few details about the discussions. the sheriff only saying a little bit earlier today that mr. dyke had an important story but it was very complicated. the sheriff wouldn't elaborate from there. just within the past hour people here out of the press site where the media are gathered across the street from police command post. many people here heard some sort of a boom. couldn't say whether it was an explosion, gun fire or simply the door on a truck closing but </div>
</div><!--/.snippet-->
</div><!--/.col-y-0-->
</div><!--/.tvcolin-->
</div><!--/.tvcol--><div class="colspacer">
<div class="timeline"></div></div><div class="tvcol">
<div class="timeline"></div>
<div class="timedot"></div>
<div class="sniptitle">
5:03 pm </div>
<div class="snipshare">
<a title="Share, embed, or refine this clip!" alt="Share, embed, or refine this clip!"
data-toggle="tooltip" data-placement="bottom"
onclick="return TVQ.sharing_clicked(this,3)"
href="/start/180/end/240"><div class="share-icon"> </div></a>
</div><!--/.snipshare-->
<div class="tvcolin">
<div class="coltop">
<div class="th">
<div class="ltrbx"></div><div class="ltrbx"></div>
<a href="/start/180/end/240" data-toggle="tooltip" data-placement="bottom"
title="Play one minute from “The Five”, starting at 5:03 pm"
onclick="return TV2.col_clicked(3)">
<img src="//ia601707.us.archive.org/22/items/FOXNEWS_20130204_220000_The_Five/FOXNEWS_20130204_220000_The_Five.thumbs/FOXNEWS_20130204_220000_The_Five_000195.jpg"/>
</a>
</div>
</div><!--/.coltop-->
<div class="col-y-0">
<div class="snippet">
<div class="snipin nosel" unselectable="on">
a boom that got everyone's attention, there was movement up the hill behind me and then this law enforcement official saying the initial reports suggest this 5-year-old boy has been released from captivity and that he is quote okay. and the suspect who has been healing him all this time is dead. kimberly, back to you. >> is there any information you can give us about the time frame preceding this loud boom that everybody heard that perhaps there was some different changes in negotiations discussions with the suspect mr. dykes? >> no, there was no indication that there was any change in the discussion. police were telling us what they were telling us each time they came out to brief us that nerp keeping the line of communication through that pvc pipe open 24/7. the sheriff gave us more information that most of the communication had taken place </div>
</div><!--/.snippet-->
</div><!--/.col-y-0-->
</div><!--/.tvcolin-->
</div><!--/.tvcol--><div class="colspacer">
<div class="timeline"></div></div><div class="tvcol">
<div class="timeline"></div>
<div class="timedot"></div>
<div class="sniptitle">
5:04 pm </div>
<div class="snipshare">
<a title="Share, embed, or refine this clip!" alt="Share, embed, or refine this clip!"
data-toggle="tooltip" data-placement="bottom"
onclick="return TVQ.sharing_clicked(this,4)"
href="/start/240/end/300"><div class="share-icon"> </div></a>
</div><!--/.snipshare-->
<div class="tvcolin">
<div class="coltop">
<div class="th">
<div class="ltrbx"></div><div class="ltrbx"></div>
<a href="/start/240/end/300" data-toggle="tooltip" data-placement="bottom"
title="Play one minute from “The Five”, starting at 5:04 pm"
onclick="return TV2.col_clicked(4)">
<img src="//ia601707.us.archive.org/22/items/FOXNEWS_20130204_220000_The_Five/FOXNEWS_20130204_220000_The_Five.thumbs/FOXNEWS_20130204_220000_The_Five_000255.jpg"/>
</a>
</div>
</div><!--/.coltop-->
<div class="col-y-0">
<div class="snippet">
<div class="snipin nosel" unselectable="on">
during the daylight hours. but no indication that anything had changed or that we were close to a resolution, kimberly. >> jonathan here is dana perino. >> i had a question about the coordination between the local police the fbi and whoever else is involved. that was an amazing level of skill at that local level to be able to do that negotiation to keep that going for 7 days and to bring it to what sounds like a successful conclusion for the boy. >> it is indeed, dana. it has been the presence of virtually every branch of police that you can image being out here. you have the sheriff's office over the jurisdiction. you have neighboring municipalities providing police to the area, then you have alabama state law enforcement officials and then you have the fbi. so you had state, local and federal authorities out here on the scene in what appeared to be a well coordinated effort to </div>
</div><!--/.snippet-->
</div><!--/.col-y-0-->
</div><!--/.tvcolin-->
</div><!--/.tvcol--><div class="colspacer">
<div class="timeline"></div></div><div class="tvcol">
<div class="timeline"></div>
<div class="timedot"></div>
<div class="sniptitle">
5:05 pm </div>
<div class="snipshare">
<a title="Share, embed, or refine this clip!" alt="Share, embed, or refine this clip!"
data-toggle="tooltip" data-placement="bottom"
onclick="return TVQ.sharing_clicked(this,5)"
href="/start/300/end/360"><div class="share-icon"> </div></a>
</div><!--/.snipshare-->
<div class="tvcolin">
<div class="coltop">
<div class="th">
<div class="ltrbx"></div><div class="ltrbx"></div>
<a href="/start/300/end/360" data-toggle="tooltip" data-placement="bottom"
title="Play one minute from “The Five”, starting at 5:05 pm"
onclick="return TV2.col_clicked(5)">
<img src="//ia601707.us.archive.org/22/items/FOXNEWS_20130204_220000_The_Five/FOXNEWS_20130204_220000_The_Five.thumbs/FOXNEWS_20130204_220000_The_Five_000315.jpg"/>
</a>
</div>
</div><!--/.coltop-->
<div class="col-y-0">
<div class="snippet">
<div class="snipin nosel" unselectable="on">
bring this resolution, dana. >> can you tell us about what you know about the boy and do you have any indication of what his condition is or where he is right now? >> we don't know where he is right now. but law enforcement source saying that he is quote, okay. in general we were told he was a special needs student, that perhaps he suffered from some form of asperger's syndrome. anecdotally, folks who knew the bus driver saying charlie pullman jr. would keep the special needs children at the front of the bus so he could keep an eye on them. if that's the case, that might explain why this kid was targeted, why the gunman selected him as a hostage. perhaps all of the other children were at the back of the bus. i am told the driver had gotten that back door open before he was shot so the kids in the back of the bus it would have been easier for them to get off and </div>
</div><!--/.snippet-->
</div><!--/.col-y-0-->
</div><!--/.tvcolin-->
</div><!--/.tvcol--><div class="colspacer">
<div class="timeline"></div></div><div class="tvcol">
<div class="timeline"></div>
<div class="timedot"></div>
<div class="sniptitle">
5:06 pm </div>
<div class="snipshare">
<a title="Share, embed, or refine this clip!" alt="Share, embed, or refine this clip!"
data-toggle="tooltip" data-placement="bottom"
onclick="return TVQ.sharing_clicked(this,6)"
href="/start/360/end/420"><div class="share-icon"> </div></a>
</div><!--/.snipshare-->
<div class="tvcolin">
<div class="coltop">
<div class="th">
<div class="ltrbx"></div><div class="ltrbx"></div>
<a href="/start/360/end/420" data-toggle="tooltip" data-placement="bottom"
title="Play one minute from “The Five”, starting at 5:06 pm"
onclick="return TV2.col_clicked(6)">
<img src="//ia601707.us.archive.org/22/items/FOXNEWS_20130204_220000_The_Five/FOXNEWS_20130204_220000_The_Five.thumbs/FOXNEWS_20130204_220000_The_Five_000375.jpg"/>
</a>
</div>
</div><!--/.coltop-->
<div class="col-y-0">
<div class="snippet">
<div class="snipin nosel" unselectable="on">
this kid would have been an easier target sitting at the front of the bus if what residents are telling us is true that the special needs were kept near the driver so he could care for them. >> this is bob beckel. is there any indication this was a single bunker or was there a series of rooms in this complex? >> our reports that we have been getting is it's a single bunker and there were conflicting reports about the dimensions. we heard 6 by 8 feet and then we heard reports it was slightly larger than that perhaps as long as 15 feet long. our understanding it was a relatively small single room bunker. >> jonathan, we keep hearing about this guy dim dykes. according to neighbors it was no surprise. everybody knew what he was doing what he was planning. </div>
</div><!--/.snippet-->
</div><!--/.col-y-0-->
</div><!--/.tvcolin-->
</div><!--/.tvcol--><div class="colspacer">
<div class="timeline"></div></div><div class="tvcol">
<div class="timeline"></div>
<div class="timedot"></div>
<div class="sniptitle">
5:07 pm </div>
<div class="snipshare">
<a title="Share, embed, or refine this clip!" alt="Share, embed, or refine this clip!"
data-toggle="tooltip" data-placement="bottom"
onclick="return TVQ.sharing_clicked(this,7)"
href="/start/420/end/480"><div class="share-icon"> </div></a>
</div><!--/.snipshare-->
<div class="tvcolin">
<div class="coltop">
<div class="th">
<div class="ltrbx"></div><div class="ltrbx"></div>
<a href="/start/420/end/480" data-toggle="tooltip" data-placement="bottom"
title="Play one minute from “The Five”, starting at 5:07 pm"
onclick="return TV2.col_clicked(7)">
<img src="//ia601707.us.archive.org/22/items/FOXNEWS_20130204_220000_The_Five/FOXNEWS_20130204_220000_The_Five.thumbs/FOXNEWS_20130204_220000_The_Five_000435.jpg"/>
</a>
</div>
</div><!--/.coltop-->
<div class="col-y-0">
<div class="snippet">
<div class="snipin nosel" unselectable="on">
why was he still out in public? >> neighbors say that it was a ticking time bomb. some neighbors had reported him to the police but they say the problem is, if they were reporting gun fire the police would come out the gun fire would be gone there would be nothing they could get him on. evidenc he was scheduled to stand in court last pens on charges of menacing his neighbors threatening neighbors with a gun. but of course the hostage standoff began the afternoon before that. >> i have a question, are you able to see whether or not in terms of containment of the area what other emergency services perhaps are on scene to give some indication what the explosion might have been is there any kind of hazmat on location or emt? >> it is hard to tell, because they have had ambulances stationed out here through out the ordeal. they have had a fire truck out here through out the ordeal. </div>
</div><!--/.snippet-->
</div><!--/.col-y-0-->
</div><!--/.tvcolin-->
</div><!--/.tvcol--><div class="colspacer">
<div class="timeline"></div></div><div class="tvcol">
<div class="timeline"></div>
<div class="timedot"></div>
<div class="sniptitle">
5:08 pm </div>
<div class="snipshare">
<a title="Share, embed, or refine this clip!" alt="Share, embed, or refine this clip!"
data-toggle="tooltip" data-placement="bottom"
onclick="return TVQ.sharing_clicked(this,8)"
href="/start/480/end/540"><div class="share-icon"> </div></a>
</div><!--/.snipshare-->
<div class="tvcolin">
<div class="coltop">
<div class="th">
<div class="ltrbx"></div><div class="ltrbx"></div>
<a href="/start/480/end/540" data-toggle="tooltip" data-placement="bottom"
title="Play one minute from “The Five”, starting at 5:08 pm"
onclick="return TV2.col_clicked(8)">
<img src="//ia601707.us.archive.org/22/items/FOXNEWS_20130204_220000_The_Five/FOXNEWS_20130204_220000_The_Five.thumbs/FOXNEWS_20130204_220000_The_Five_000495.jpg"/>
</a>
</div>
</div><!--/.coltop-->
<div class="col-y-0">
<div class="snippet">
<div class="snipin nosel" unselectable="on">
then they also have state and federal vehicles out here. they really brought vehicles out for every possible contingency. it's not like when the boom came there was a sudden influx of new vehicles to the scene. we really can't tell from the vehicles here exactly what that explosion was. that may be something we have to wait until the news conference before we get confirmation. >> i was curious about his parents. the child's parents. have you been able to talk to them? >> no. we haven't been able to talk to them. law enforcement has been really trying to encourage the media to keep their distance saying it's a very difficult time. we have heard indirectly. talking to a local preacher who is friends with a pastor who has been counseling the family, the parents and the grandparents and says given the circumstances they have actually been holding up quite well, that they have had a lot of faith all along </div>
</div><!--/.snippet-->
</div><!--/.col-y-0-->
</div><!--/.tvcolin-->
</div><!--/.tvcol--><div class="colspacer">
<div class="timeline"></div></div><div class="tvcol">
<div class="timeline"></div>
<div class="timedot"></div>
<div class="sniptitle">
5:09 pm </div>
<div class="snipshare">
<a title="Share, embed, or refine this clip!" alt="Share, embed, or refine this clip!"
data-toggle="tooltip" data-placement="bottom"
onclick="return TVQ.sharing_clicked(this,9)"
href="/start/540/end/600"><div class="share-icon"> </div></a>
</div><!--/.snipshare-->
<div class="tvcolin">
<div class="coltop">
<div class="th">
<div class="ltrbx"></div><div class="ltrbx"></div>
<a href="/start/540/end/600" data-toggle="tooltip" data-placement="bottom"
title="Play one minute from “The Five”, starting at 5:09 pm"
onclick="return TV2.col_clicked(9)">
<img src="//ia601707.us.archive.org/22/items/FOXNEWS_20130204_220000_The_Five/FOXNEWS_20130204_220000_The_Five.thumbs/FOXNEWS_20130204_220000_The_Five_000555.jpg"/>
</a>
</div>
</div><!--/.coltop-->
<div class="col-y-0">
<div class="snippet">
<div class="snipin nosel" unselectable="on">
that god would see them through this and there would be a peaceful resolution. it appears their prayers have been answered today. just curious, the gentlemen who told you the boy was quote-unquote okay. give a sense of his mood? where they euphoric? were they happy? set the scene for us. >> yeah, i am actually getting this information from one of our producers, so i have not had direct contact with this law enforcement official. i can only image any one in the law enforcement community is going to be over joyed this little boy is safe. their number one priority all along is ensuring the safety of this little boy. another priority was ensuring the safety of the suspect. ideally they wanted to get them both out safely but their number one priority was ensuring the safety of this 5-year-old little boy and they got that. i can only image everyone in law </div>
</div><!--/.snippet-->
</div><!--/.col-y-0-->
</div><!--/.tvcolin-->
</div><!--/.tvcol--><div class="colspacer">
<div class="timeline"></div></div><div class="tvcol">
<div class="timeline"></div>
<div class="timedot"></div>
<div class="sniptitle">
5:10 pm </div>
<div class="snipshare">
<a title="Share, embed, or refine this clip!" alt="Share, embed, or refine this clip!"
data-toggle="tooltip" data-placement="bottom"
onclick="return TVQ.sharing_clicked(this,10)"
href="/start/600/end/660"><div class="share-icon"> </div></a>
</div><!--/.snipshare-->
<div class="tvcolin">
<div class="coltop">
<div class="th">
<div class="ltrbx"></div><div class="ltrbx"></div>
<a href="/start/600/end/660" data-toggle="tooltip" data-placement="bottom"
title="Play one minute from “The Five”, starting at 5:10 pm"
onclick="return TV2.col_clicked(10)">
<img src="//ia601707.us.archive.org/22/items/FOXNEWS_20130204_220000_The_Five/FOXNEWS_20130204_220000_The_Five.thumbs/FOXNEWS_20130204_220000_The_Five_000615.jpg"/>
</a>
</div>
</div><!--/.coltop-->
<div class="col-y-0">
<div class="snippet">
<div class="snipin nosel" unselectable="on">
enforcement is going to be ue fore rick. >> i think the situation was made more complicated the fact there was an under ground bunker so there was no access into the bunker to try to get teams in. usually they are able to respond to get different snipers to try to terminate the suspect and get the child safely out. here they had the pvc tube. can you talk to us about that? >> absolutely. first of all it's going to be difficult enough getting into an under ground bunker where presumely mrooably there's only access way and assuming it's blocked off. based on neighbors what they said about this guy with his strong anti government views and apparent paranoia you don't know if the area around the bunker is going to be booby trapped. even if they had a team they were confident they could go in take the suspect out and rescue the boy without the boy getting injured, if there are booby </div>
</div><!--/.snippet-->
</div><!--/.col-y-0-->
</div><!--/.tvcolin-->
</div><!--/.tvcol--><div class="colspacer">
<div class="timeline"></div></div><div class="tvcol">
<div class="timeline"></div>
<div class="timedot"></div>
<div class="sniptitle">
5:11 pm </div>
<div class="snipshare">
<a title="Share, embed, or refine this clip!" alt="Share, embed, or refine this clip!"
data-toggle="tooltip" data-placement="bottom"
onclick="return TVQ.sharing_clicked(this,11)"
href="/start/660/end/720"><div class="share-icon"> </div></a>
</div><!--/.snipshare-->
<div class="tvcolin">
<div class="coltop">
<div class="th">
<div class="ltrbx"></div><div class="ltrbx"></div>
<a href="/start/660/end/720" data-toggle="tooltip" data-placement="bottom"
title="Play one minute from “The Five”, starting at 5:11 pm"
onclick="return TV2.col_clicked(11)">
<img src="//ia601707.us.archive.org/22/items/FOXNEWS_20130204_220000_The_Five/FOXNEWS_20130204_220000_The_Five.thumbs/FOXNEWS_20130204_220000_The_Five_000675.jpg"/>
</a>
</div>
</div><!--/.coltop-->
<div class="col-y-0">
<div class="snippet">
<div class="snipin nosel" unselectable="on">
traps you are going to j jeopardize your team, the suspect gets angry and you have ruined everything. they were playing this cautious from the get go. it appears their caution has finally paid off. >> jonathan to bring you up to date the viewers perhaps just joining us this is breaking news development in alabama. jonathan son scene. we are await ago press conference regarding this remarkable ending to this terrible situation, a 7 days where this child was held 5 years old special needs some say suffering from asperger's syndrome was held by the suspect that many said was a menace to the neighborhood and the community. we know right now the suspect is deceased. this was determined after a loud explosion, correct? >> yes. this happened after some sort of explosion that got everyone's attention at the media center. we noticed people moving up the </div>
</div><!--/.snippet-->
</div><!--/.col-y-0-->
</div><!--/.tvcolin-->
</div><!--/.tvcol--><div class="colspacer">
<div class="timeline"></div></div><div class="tvcol">
<div class="timeline"></div>
<div class="timedot"></div>
<div class="sniptitle">
5:12 pm </div>
<div class="snipshare">
<a title="Share, embed, or refine this clip!" alt="Share, embed, or refine this clip!"
data-toggle="tooltip" data-placement="bottom"
onclick="return TVQ.sharing_clicked(this,12)"
href="/start/720/end/780"><div class="share-icon"> </div></a>
</div><!--/.snipshare-->
<div class="tvcolin">
<div class="coltop">
<div class="th">
<div class="ltrbx"></div><div class="ltrbx"></div>
<a href="/start/720/end/780" data-toggle="tooltip" data-placement="bottom"
title="Play one minute from “The Five”, starting at 5:12 pm"
onclick="return TV2.col_clicked(12)">
<img src="//ia601707.us.archive.org/22/items/FOXNEWS_20130204_220000_The_Five/FOXNEWS_20130204_220000_The_Five.thumbs/FOXNEWS_20130204_220000_The_Five_000735.jpg"/>
</a>
</div>
</div><!--/.coltop-->
<div class="col-y-0">
<div class="snippet">
<div class="snipin nosel" unselectable="on">
hill. these initial reports of a law enforcement source saying the standoff has been resolved that the suspect is dead and this 5-year-old boy has been released and he is okay. another thing that is interesting to note, earlier you had asked what we heard from the boy's family. when there was a press conference earlier today while the standoff was still ongoing, a reporter asked the sheriff wally olsen, whether the child had been able to speak with his mother. at that point the fbi stepped in and shut down the press conference. interesting to note there there were some apparent sensitivities about what contact the family was able to have with the boy through out this ordeal. once again it appears the standoff is finally over a law enforcement source saying the </div>
</div><!--/.snippet-->
</div><!--/.col-y-0-->
</div><!--/.tvcolin-->
</div><!--/.tvcol--><div class="colspacer">
<div class="timeline"></div></div><div class="tvcol">
<div class="timeline"></div>
<div class="timedot"></div>
<div class="sniptitle">
5:13 pm </div>
<div class="snipshare">
<a title="Share, embed, or refine this clip!" alt="Share, embed, or refine this clip!"
data-toggle="tooltip" data-placement="bottom"
onclick="return TVQ.sharing_clicked(this,13)"
href="/start/780/end/840"><div class="share-icon"> </div></a>
</div><!--/.snipshare-->
<div class="tvcolin">
<div class="coltop">
<div class="th">
<div class="ltrbx"></div><div class="ltrbx"></div>
<a href="/start/780/end/840" data-toggle="tooltip" data-placement="bottom"
title="Play one minute from “The Five”, starting at 5:13 pm"
onclick="return TV2.col_clicked(13)">
<img src="//ia601707.us.archive.org/22/items/FOXNEWS_20130204_220000_The_Five/FOXNEWS_20130204_220000_The_Five.thumbs/FOXNEWS_20130204_220000_The_Five_000795.jpg"/>
</a>
</div>
</div><!--/.coltop-->
<div class="col-y-0">
<div class="snippet">
<div class="snipin nosel" unselectable="on">
boy has been released and is apparently okay and the suspect is dead. >> i can speak to that a little bit. at one point there were indications that the suspect -- or there may have been a television in the bunker and they may have been watching some of the news coverage. maybe that's why they were cutting off some of the questions some of the ideas and certainly some of the video that was going on with a lot of law enforcement people walking around mulling around didn't want to make mr. dykes do something out of fear, right? >> absolutely. he had electricity down in the bunker and we are told he had a television. we don't know whether he was watching, whether he was using the tv to entertainment boy or whether he was watching news accounts. certainly every one here every one in law enforcement was very aware everything that was going on in the area surrounding this bunker was potentially viewable on tv. so law enforcement maintained a very wide perimeter. </div>
</div><!--/.snippet-->
</div><!--/.col-y-0-->
</div><!--/.tvcolin-->
</div><!--/.tvcol--><div class="colspacer">
<div class="timeline"></div></div><div class="tvcol">
<div class="timeline"></div>
<div class="timedot"></div>
<div class="sniptitle">
5:14 pm </div>
<div class="snipshare">
<a title="Share, embed, or refine this clip!" alt="Share, embed, or refine this clip!"
data-toggle="tooltip" data-placement="bottom"
onclick="return TVQ.sharing_clicked(this,14)"
href="/start/840/end/900"><div class="share-icon"> </div></a>
</div><!--/.snipshare-->
<div class="tvcolin">
<div class="coltop">
<div class="th">
<div class="ltrbx"></div><div class="ltrbx"></div>
<a href="/start/840/end/900" data-toggle="tooltip" data-placement="bottom"
title="Play one minute from “The Five”, starting at 5:14 pm"
onclick="return TV2.col_clicked(14)">
<img src="//ia601707.us.archive.org/22/items/FOXNEWS_20130204_220000_The_Five/FOXNEWS_20130204_220000_The_Five.thumbs/FOXNEWS_20130204_220000_The_Five_000855.jpg"/>
</a>
</div>
</div><!--/.coltop-->
<div class="col-y-0">
<div class="snippet">
<div class="snipin nosel" unselectable="on">
all of the activity that was going on was actual loifr t-- actually over the hill. law enforcement kept me here across the street and on the other side maintained a very wide perimeter so our cameras were not allowed to view what was going on in real time in the area surrounding the bunker. obviously law enforcement authorities were very concerned that mr. dykes might be watching what was unfolding on tv and didn't want to insight any violence. >> from my perspective the law enforcement officials who have been keeping people informed have been very professional and giving as much information as they possibly could to the public that is very interested in the well-being of the little boy. the press conference coming up do you expect they will be able to be more forthcoming with the details we are asking you that you have been trying to get but haven't been able to yet partly out of, sounds like, safety for </div>
</div><!--/.snippet-->
</div><!--/.col-y-0-->
</div><!--/.tvcolin-->
</div><!--/.tvcol--><div class="colspacer">
<div class="timeline"></div></div><div class="tvcol">
<div class="timeline"></div>
<div class="timedot"></div>
<div class="sniptitle">
5:15 pm </div>
<div class="snipshare">
<a title="Share, embed, or refine this clip!" alt="Share, embed, or refine this clip!"
data-toggle="tooltip" data-placement="bottom"
onclick="return TVQ.sharing_clicked(this,15)"
href="/start/900/end/960"><div class="share-icon"> </div></a>
</div><!--/.snipshare-->
<div class="tvcolin">
<div class="coltop">
<div class="th">
<div class="ltrbx"></div><div class="ltrbx"></div>
<a href="/start/900/end/960" data-toggle="tooltip" data-placement="bottom"
title="Play one minute from “The Five”, starting at 5:15 pm"
onclick="return TV2.col_clicked(15)">
<img src="//ia601707.us.archive.org/22/items/FOXNEWS_20130204_220000_The_Five/FOXNEWS_20130204_220000_The_Five.thumbs/FOXNEWS_20130204_220000_The_Five_000915.jpg"/>
</a>
</div>
</div><!--/.coltop-->
<div class="col-y-0">
<div class="snippet">
<div class="snipin nosel" unselectable="on">
the boy. >> caution, yeah, out of an abundance of caution. every time the sheriff came out it was like he was almost apologizing to the media that he couldn't give us more information. seemed like there was stuff at the tip of his tongue that he wanted to share. but out of abundance of caution didn't want to do anything to jeopardize a peaceful resolution of this potentially violent standoff. earlier today he said that he had a discussion with his own family and his mother told him some of the things that people were speculating about out in the community. he said that he assured his mother that he and everyone in law enforcement were doing everything humanly possible to ensure the safety and the safe release of this little boy. the other interesting thing that came out of today's press conference in particular the one that happened earlier today just before the fbi stepped in and </div>
</div><!--/.snippet-->
</div><!--/.col-y-0-->
</div><!--/.tvcolin-->
</div><!--/.tvcol--><div class="colspacer">
<div class="timeline"></div></div><div class="tvcol">
<div class="timeline"></div>
<div class="timedot"></div>
<div class="sniptitle">
5:16 pm </div>
<div class="snipshare">
<a title="Share, embed, or refine this clip!" alt="Share, embed, or refine this clip!"
data-toggle="tooltip" data-placement="bottom"
onclick="return TVQ.sharing_clicked(this,16)"
href="/start/960/end/1020"><div class="share-icon"> </div></a>
</div><!--/.snipshare-->
<div class="tvcolin">
<div class="coltop">
<div class="th">
<div class="ltrbx"></div><div class="ltrbx"></div>
<a href="/start/960/end/1020" data-toggle="tooltip" data-placement="bottom"
title="Play one minute from “The Five”, starting at 5:16 pm"
onclick="return TV2.col_clicked(16)">
<img src="//ia601707.us.archive.org/22/items/FOXNEWS_20130204_220000_The_Five/FOXNEWS_20130204_220000_The_Five.thumbs/FOXNEWS_20130204_220000_The_Five_000975.jpg"/>
</a>
</div>