forked from codelucas/newspaper
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdailycaller.com1.html
More file actions
977 lines (943 loc) · 75.5 KB
/
Copy pathdailycaller.com1.html
File metadata and controls
977 lines (943 loc) · 75.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
<!DOCTYPE html>
<!--[if lt IE 9]> <html class="no-js lt-ie10 lt-ie9" lang="en-US" xmlns:fb="http://ogp.me/ns/fb#"> <![endif]-->
<!--[if IE 9 ]> <html class="no-js lt-ie10" lang="en-US" xmlns:fb="http://ogp.me/ns/fb#"> <![endif]-->
<!--[if gt IE 9 ]><!--> <html class="no-js not-ie" lang="en-US" xmlns:fb="http://ogp.me/ns/fb#"> <!--<![endif]-->
<head>
<!-- Google Tag Manager -->
<noscript><iframe src="//www.googletagmanager.com/ns.html?id=GTM-KK3H7G" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src='//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);})(window,document,'script','dataLayer','GTM-KK3H7G');</script>
<!-- End Google Tag Manager -->
<!-- Twitter Cards: START -->
<meta name="twitter:url" content="http://dailycaller.com/2014/12/25/happy-kwanzaa-the-holiday-brought-to-you-by-the-fbi/">
<meta name="twitter:card" content="summary">
<meta name="twitter:site" content="@dailycaller">
<meta name="twitter:site:id" content="39308549">
<meta name="twitter:title" content="Happy Kwanzaa! The Holiday Brought To You By The FBI Via @dailycaller">
<meta name="twitter:description" content="Only white liberals take Kwanzaa seriously. American blacks celebrate Christmas.">
<meta name="twitter:image:src" content="http://dailycaller.com/wp-content/uploads/2014/01/coulter-e1390456183672.png">
<!-- Twitter Cards: END -->
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1" /><script type="text/javascript">window.NREUM||(NREUM={}),__nr_require=function(t,e,n){function r(n){if(!e[n]){var o=e[n]={exports:{}};t[n][0].call(o.exports,function(e){var o=t[n][1][e];return r(o?o:e)},o,o.exports)}return e[n].exports}if("function"==typeof __nr_require)return __nr_require;for(var o=0;o<n.length;o++)r(n[o]);return r}({QJf3ax:[function(t,e){function n(t){function e(e,n,a){t&&t(e,n,a),a||(a={});for(var c=u(e),f=c.length,s=i(a,o,r),p=0;f>p;p++)c[p].apply(s,n);return s}function a(t,e){f[t]=u(t).concat(e)}function u(t){return f[t]||[]}function c(){return n(e)}var f={};return{on:a,emit:e,create:c,listeners:u,_events:f}}function r(){return{}}var o="nr@context",i=t("gos");e.exports=n()},{gos:"7eSDFh"}],ee:[function(t,e){e.exports=t("QJf3ax")},{}],gos:[function(t,e){e.exports=t("7eSDFh")},{}],"7eSDFh":[function(t,e){function n(t,e,n){if(r.call(t,e))return t[e];var o=n();if(Object.defineProperty&&Object.keys)try{return Object.defineProperty(t,e,{value:o,writable:!0,enumerable:!1}),o}catch(i){}return t[e]=o,o}var r=Object.prototype.hasOwnProperty;e.exports=n},{}],D5DuLP:[function(t,e){function n(t,e,n){return r.listeners(t).length?r.emit(t,e,n):(o[t]||(o[t]=[]),void o[t].push(e))}var r=t("ee").create(),o={};e.exports=n,n.ee=r,r.q=o},{ee:"QJf3ax"}],handle:[function(t,e){e.exports=t("D5DuLP")},{}],XL7HBI:[function(t,e){function n(t){var e=typeof t;return!t||"object"!==e&&"function"!==e?-1:t===window?0:i(t,o,function(){return r++})}var r=1,o="nr@id",i=t("gos");e.exports=n},{gos:"7eSDFh"}],id:[function(t,e){e.exports=t("XL7HBI")},{}],loader:[function(t,e){e.exports=t("G9z0Bl")},{}],G9z0Bl:[function(t,e){function n(){var t=l.info=NREUM.info;if(t&&t.agent&&t.licenseKey&&t.applicationID&&c&&c.body){l.proto="https"===p.split(":")[0]||t.sslForHttp?"https://":"http://",a("mark",["onload",i()]);var e=c.createElement("script");e.src=l.proto+t.agent,c.body.appendChild(e)}}function r(){"complete"===c.readyState&&o()}function o(){a("mark",["domContent",i()])}function i(){return(new Date).getTime()}var a=t("handle"),u=window,c=u.document,f="addEventListener",s="attachEvent",p=(""+location).split("?")[0],l=e.exports={offset:i(),origin:p,features:{}};c[f]?(c[f]("DOMContentLoaded",o,!1),u[f]("load",n,!1)):(c[s]("onreadystatechange",r),u[s]("onload",n)),a("mark",["firstbyte",i()])},{handle:"D5DuLP"}]},{},["G9z0Bl"]);</script>
<meta content="true" name="HandheldFriendly" />
<meta content="on" http-equiv="cleartype" />
<meta content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no" name="viewport" />
<link rel="shortcut icon" href="http://cdn01.dailycaller.com/wp-content/themes/thedc/favicon.ico" />
<title>Happy Kwanzaa! The Holiday Brought To You By The FBI | The Daily Caller</title>
<link rel="pingback" href="http://dailycaller.com/xmlrpc.php" />
<meta property="fb:app_id" content="143489452702" />
<meta property="og:site_name" content="The Daily Caller"/>
<meta property="og:description" content="I will not be shooting any Black Panthers this week because I am Kwanza-reform, and we are not that observant. Kwanzaa, celebrated exclusively by white liberals, is a fake holiday invented in 1966 by "/>
<meta property="og:title" content="Happy Kwanzaa! The Holiday Brought To You By The FBI"/>
<meta property="og:url" content="http://dailycaller.com/2014/12/25/happy-kwanzaa-the-holiday-brought-to-you-by-the-fbi/"/>
<meta property="og:type" content="article" />
<meta property="og:image" content="http://cdn01.dailycaller.com/wp-content/uploads/2014/01/coulter-e1390456183672.png" />
<link rel="alternate" type="application/rss+xml" title="The Daily Caller » Feed" href="http://dailycaller.com/feed/" />
<link rel="alternate" type="application/rss+xml" title="The Daily Caller » Comments Feed" href="http://dailycaller.com/comments/feed/" />
<link rel="alternate" type="application/rss+xml" title="The Daily Caller » Happy Kwanzaa! The Holiday Brought To You By The FBI Comments Feed" href="http://dailycaller.com/2014/12/25/happy-kwanzaa-the-holiday-brought-to-you-by-the-fbi/feed/" />
<!-- Start: GPT Async -->
<script>
var googletag = googletag || {};
googletag.cmd = googletag.cmd || [];
(function() {
var gads = document.createElement('script'),
useSSL = 'https:' == document.location.protocol,
node = document.getElementsByTagName('script')[0];
gads.async = true;
gads.type = 'text/javascript';
gads.src = (useSSL ? 'https:' : 'http:') + '//www.googletagservices.com/tag/js/gpt.js';
node.parentNode.insertBefore(gads, node);
})();
googletag.cmd.push( function() {
googletag
.defineSlot(
'/10519169/Ann_Coulter/Ann_Coulter_Articles',
[[728, 90], [900, 90], [970, 150], [970, 250], [320, 50], [970, 90]],
'div-gpt-ad-1378388834355-1'
)
.setTargeting( 'pos', ['top'] )
.addService( googletag.pubads() );
googletag
.defineSlot(
'/10519169/Ann_Coulter/Ann_Coulter_Articles',
[[300, 250], [300, 600], [300, 1050]],
'div-gpt-ad-1378388834355-2'
)
.setTargeting( 'pos', ['right1'] )
.addService( googletag.pubads() );
googletag
.defineSlot(
'/10519169/Ann_Coulter/Ann_Coulter_Articles',
[[300, 250], [300, 600]],
'div-gpt-ad-1378388834355-3'
)
.setTargeting( 'pos', ['right2'] )
.addService( googletag.pubads() );
googletag
.defineSlot(
'/10519169/Ann_Coulter/Ann_Coulter_Articles',
[[300, 250], [300, 600]],
'div-gpt-ad-1378388834355-4'
)
.setTargeting( 'pos', ['right3'] )
.addService( googletag.pubads() );
googletag
.defineSlot(
'/10519169/Ann_Coulter/Ann_Coulter_Articles',
[[728, 90], [900, 90]],
'div-gpt-ad-1378388834355-5'
)
.setTargeting( 'pos', [''] )
.addService( googletag.pubads() );
googletag
.defineSlot(
'/10519169/Coulter/Coulter_Articles',
[[728, 90], [900, 90], [970, 150], [970, 250], [320, 50], [970, 90]],
'div-gpt-ad-1372099936350-1'
)
.setTargeting( 'pos', ['top'] )
.addService( googletag.pubads() );
googletag
.defineSlot(
'/10519169/Coulter/Coulter_Articles',
[[300, 250], [300, 600], [300, 1050]],
'div-gpt-ad-1372099936350-2'
)
.setTargeting( 'pos', ['right1'] )
.addService( googletag.pubads() );
googletag
.defineSlot(
'/10519169/Coulter/Coulter_Articles',
[[300, 250], [300, 600]],
'div-gpt-ad-1372099936350-3'
)
.setTargeting( 'pos', ['right2'] )
.addService( googletag.pubads() );
googletag
.defineSlot(
'/10519169/Coulter/Coulter_Articles',
[[300, 250], [300, 600], [300, 1050]],
'div-gpt-ad-1372099936350-4'
)
.setTargeting( 'pos', ['right3'] )
.addService( googletag.pubads() );
googletag
.defineSlot(
'/10519169/Coulter/Coulter_Articles',
[[728, 90], [900, 90]],
'div-gpt-ad-1372099936350-5'
)
.setTargeting( 'pos', [''] )
.addService( googletag.pubads() );
googletag
.defineSlot(
'/10519169/Reskin',
[2000, 1500],
'div-gpt-ad-1372431440336-0'
)
.setTargeting( 'pos',['skin'] )
.addService( googletag.pubads() );
googletag.pubads().setTargeting('dccategories', ["Uncategorized"]);
googletag.pubads().setTargeting('dctags', ["Ann Coulter","FBI","Kwanzaa","Maulana Karenga","Patty Hearst"]);
googletag.pubads().setTargeting( 'pageid','4419111' );
googletag.pubads().setTargeting( 'url','http%3A%2F%2Fdailycaller.com%2F2014%2F12%2F25%2Fhappy-kwanzaa-the-holiday-brought-to-you-by-the-fbi%2F' );
googletag.pubads().setTargeting( 'topic','ann-coulter' );
googletag.pubads().collapseEmptyDivs(true);
googletag.pubads().enableSingleRequest();
googletag.enableServices();
});
</script><!-- End: GPT -->
<link rel='stylesheet' id='foundation-css-css' href='http://cdn01.dailycaller.com/wp-content/themes/thedc/library/css/20150102-1420253073-foundation.min.css' type='text/css' media='all' />
<link rel='stylesheet' id='icomoon-css' href='http://dailycaller.com/wp-content/themes/thedc/library/css/20150102-1420253073-icomoon.css' type='text/css' media='all' />
<link rel='stylesheet' id='normalize-css' href='http://cdn01.dailycaller.com/wp-content/themes/thedc/library/css/20150102-1420253073-normalize.css' type='text/css' media='all' />
<link rel='stylesheet' id='slides-css' href='http://cdn01.dailycaller.com/wp-content/themes/thedc/css/20150102-1420253073-slides.css' type='text/css' media='all' />
<!--[if lt IE 9]>
<link rel='stylesheet' id='foundation_ie8_grid-css' href='http://cdn01.dailycaller.com/wp-content/themes/thedc/library/css/20150102-1420253073-ie8-grid-foundation-5.css' type='text/css' media='all' />
<![endif]-->
<link rel='stylesheet' id='thedc-css' href='http://cdn01.dailycaller.com/wp-content/themes/thedc/library/css/20150102-1420253073-thedc.css' type='text/css' media='all' />
<!--[if lt IE 9]>
<link rel='stylesheet' id='foundation_ie8_menu-css' href='http://cdn01.dailycaller.com/wp-content/themes/thedc/library/css/ie8-menu.css' type='text/css' media='all' />
<![endif]-->
<script type='text/javascript' src='//ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js'></script>
<script type='text/javascript' src='http://cdn01.dailycaller.com/wp-content/themes/thedc/library/js/single.js'></script>
<script type='text/javascript' src='http://cdn01.dailycaller.com/wp-content/themes/thedc/library/js/vendor/modernizr.js'></script>
<script type='text/javascript' src='http://cdn01.dailycaller.com/wp-content/themes/thedc/library/js/header.js'></script>
<script type='text/javascript' src='http://cdn01.dailycaller.com/wp-content/plugins/daily_caller/js/taboola-head.js'></script>
<script type='text/javascript' src='http://cdn01.dailycaller.com/wp-content/plugins/daily_caller/js/taboola.js'></script>
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="http://dailycaller.com/xmlrpc.php?rsd" />
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="http://dailycaller.com/wp-includes/wlwmanifest.xml" />
<link rel='prev' title='One In Five People Who Write For Rolling Stone Are Morons' href='http://dailycaller.com/2014/12/18/one-in-five-people-who-write-for-rolling-stone-are-morons/' />
<link rel='next' title='Liberals: If The Shoe Doesn’t Fit, Make Everyone Wear It' href='http://dailycaller.com/2014/12/31/liberals-if-the-shoe-doesnt-fit-make-everyone-wear-it/' />
<link rel='shortlink' href='http://dailycaller.com/?p=4419111' />
<script type="text/javascript" src="http://cdn01.dailycaller.com/wp-content/plugins/audio-player/assets/audio-player.js?ver=2.0.4.6"></script>
<script type="text/javascript">AudioPlayer.setup("http://cdn01.dailycaller.com/wp-content/plugins/audio-player/assets/player.swf?ver=2.0.4.6", {width:"290",animation:"yes",encode:"yes",initialvolume:"60",remaining:"no",noinfo:"no",buffer:"5",checkpolicy:"no",rtl:"no",bg:"E5E5E5",text:"333333",leftbg:"eeeeee",lefticon:"333333",volslider:"5d5e5e",voltrack:"ffffff",rightbg:"B4B4B4",rightbghover:"999999",righticon:"333333",righticonhover:"FFFFFF",track:"FFFFFF",loader:"009900",border:"CCCCCC",tracker:"cd2b2b",skip:"666666",pagebg:"FFFFFF",transparentpagebg:"yes"});</script>
<script type="text/javascript" src="http://a.postrelease.com/serve/load.js?async=true"></script><script type="text/javascript" src="//native.sharethrough.com/assets/tag.js" async></script>
<meta name="item-publish-date" content="Thu, Dec 25 2014 16:57:37 +0000" />
<meta name="publish-date" content="Thu, Dec 25 2014 16:57:37 +0000" />
<script type="text/javascript" async src="http://launch.newsinc.com/js/embed.js" id="_nw2e-js"></script><!-- wp-parsely Plugin Version 1.6 -->
<meta name='wp-parsely_version' id='wp-parsely_version' content='1.6' />
<meta name='parsely-page' id='parsely-page' content='{"title":"Happy Kwanzaa! The Holiday Brought To You By The FBI","link":"http:\/\/dailycaller.com\/2014\/12\/25\/happy-kwanzaa-the-holiday-brought-to-you-by-the-fbi\/","image_url":"http:\/\/dailycaller.com\/wp-content\/uploads\/2014\/01\/coulter-e1390456183672-220x120.png","type":"post","post_id":"4419111","pub_date":"2014-12-25T16:57:37Z","section":"Uncategorized","author":"Ann Coulter","tags":["ann coulter","fbi","kwanzaa","maulana karenga","patty hearst"]}' />
<!-- All in One SEO Pack 2.2.3 by Michael Torbert of Semper Fi Web Design[2034,2112] -->
<meta name="description" content="Only white liberals take Kwanzaa seriously. American blacks celebrate Christmas." />
<meta name="keywords" content="ann coulter,fbi,kwanzaa,maulana karenga,patty hearst" />
<link rel='next' href='http://dailycaller.com/2014/12/25/happy-kwanzaa-the-holiday-brought-to-you-by-the-fbi/2/' />
<link rel="canonical" href="http://dailycaller.com/2014/12/25/happy-kwanzaa-the-holiday-brought-to-you-by-the-fbi/" />
<!-- /all in one seo pack -->
<!-- Vipers Video Quicktags v6.4.5 | http://www.viper007bond.com/wordpress-plugins/vipers-video-quicktags/ -->
<style type="text/css">
.vvqbox { display: block; max-width: 100%; visibility: visible !important; margin: 10px auto; } .vvqbox img { max-width: 100%; height: 100%; } .vvqbox object { max-width: 100%; } .vvqbox { display: inline-block; max-width: 100%; visibility: visible !important; margin: 10px auto; } .vvqbox img { max-width: 100%; height: auto !important; } .vvqbox object { display:block; max-width: 100%; }
</style>
<script type="text/javascript">
// <![CDATA[
var vvqflashvars = {};
var vvqparams = { wmode: "opaque", allowfullscreen: "true", allowscriptaccess: "always" };
var vvqattributes = {};
var vvqexpressinstall = "http://cdn01.dailycaller.com/wp-content/plugins/vipers-video-quicktags/resources/expressinstall.swf";
// ]]>
</script>
<script type="text/javascript" src="http://mtrx.go.sonobi.com/morpheus.caller.js"></script>
<script type="text/javascript">
sbi_morpheus.register('div-gpt-ad-1378388834355-1', '9d843aa2024f3df686eb');
sbi_morpheus.register('div-gpt-ad-1378388834355-2', 'e1c37e3c4a72bf5982e1');
sbi_morpheus.register('div-gpt-ad-1378388834355-3', 'f4853f36665a46db7be0');
sbi_morpheus.register('div-gpt-ad-1378388834355-4', 'f4853f36665a46db7be0');
sbi_morpheus.register('div-gpt-ad-1378388834355-5', 'd4d29dff73ab63d4acd2');
sbi_morpheus.register('div-gpt-ad-1372099936350-1', '9d843aa2024f3df686eb');
sbi_morpheus.register('div-gpt-ad-1372099936350-2', 'e1c37e3c4a72bf5982e1');
sbi_morpheus.register('div-gpt-ad-1372099936350-3', 'f4853f36665a46db7be0');
sbi_morpheus.register('div-gpt-ad-1372099936350-4', 'e1c37e3c4a72bf5982e1');
sbi_morpheus.register('div-gpt-ad-1372099936350-5', 'd4d29dff73ab63d4acd2');
sbi_morpheus.callOperator();
</script>
</head>
<body class="single single-post postid-4419111 single-format-standard">
<div class="off-canvas-wrap" data-offcanvas>
<div class="inner-wrap">
<nav class="tab-bar show-for-medium-down">
<section class="left-small">
<a class="left-off-canvas-toggle menu-icon" href="#"><span></span></a>
</section>
<section class="middle tab-bar-section go-left show-for-medium-down logo">
<h1 class="dailycaller hide-text"><a href="http://dailycaller.com" title="The Daily Caller">DailyCaller</a></h1>
</section>
</nav>
<aside class="left-off-canvas-menu show-for-medium-down">
<ul class="off-canvas-list"><li><label>The DC</label></li><li class="divider"></li><li id="menu-item-3620791" class="hidetext iconlogo menu-item menu-item-main-menu menu-item-home"><a href="/">Home</a></li>
<li class="divider"></li><li id="menu-item-3922661" class="menu-item menu-item-main-menu menu-item-politics"><a href="http://dailycaller.com/section/politics/">Politics</a></li>
<li class="divider"></li><li id="menu-item-3922662" class="menu-item menu-item-main-menu menu-item-us"><a href="http://dailycaller.com/section/us/">US</a></li>
<li class="divider"></li><li id="menu-item-3922663" class="menu-item menu-item-main-menu menu-item-entertainment"><a href="http://dailycaller.com/section/entertainment/">Entertainment</a></li>
<li class="divider"></li><li id="menu-item-3922664" class="menu-item menu-item-main-menu menu-item-sports"><a href="http://dailycaller.com/section/sports/">Sports</a></li>
<li class="divider"></li><li id="menu-item-3922665" class="menu-item menu-item-main-menu menu-item-business"><a href="http://dailycaller.com/section/business/">Business</a></li>
<li class="divider"></li><li id="menu-item-3922666" class="menu-item menu-item-main-menu menu-item-tech"><a href="http://dailycaller.com/section/tech/">Tech</a></li>
<li class="divider"></li><li id="menu-item-3922668" class="menu-item menu-item-main-menu menu-item-education"><a href="http://dailycaller.com/section/education/">Education</a></li>
<li class="divider"></li><li id="menu-item-3922669" class="current-post-ancestor current-post-parent menu-item menu-item-main-menu menu-item-opinion"><a href="http://dailycaller.com/section/opinion/">Opinion</a></li>
<li class="divider"></li><li id="menu-item-3922671" class="menu-item menu-item-main-menu menu-item-guns-and-gear"><a href="http://dailycaller.com/section/guns-and-gear/">Guns and Gear</a></li>
<li class="divider"></li><li id="menu-item-4000372" class="menu-item menu-item-main-menu menu-item-video"><a href="http://video.dailycaller.com/">Video</a></li>
<li class="divider"></li><li id="menu-item-3443825" class="menu-item menu-item-main-menu menu-item-blogs has-dropdown"><a href="http://dailycaller.com/blogs/">Blogs</a></li>
<li class="divider"></li><li id="menu-item-3443826" class="last-menu-item menu-item menu-item-main-menu menu-item-jobs"><a href="http://dailycaller.com/jobs-board/">Jobs</a></li>
</ul><ul class="off-canvas-list"><li><label>Columnists</label></li><li class="divider"></li><li id="menu-item-3922707" class="current-post-ancestor current-post-parent menu-item menu-item-main-menu menu-item-ann-coulter"><a href="http://dailycaller.com/section/ann-coulter/">Ann Coulter</a></li>
<li class="divider"></li><li id="menu-item-3922708" class="menu-item menu-item-main-menu menu-item-ask-matt-labash"><a href="http://dailycaller.com/section/ask-matt-labash/">Ask Matt Labash</a></li>
<li class="divider"></li><li id="menu-item-3922705" class="menu-item menu-item-main-menu menu-item-kausfiles"><a href="http://dailycaller.com/blog/kausfiles/">KausFiles</a></li>
<li class="divider"></li><li id="menu-item-3922706" class="menu-item menu-item-main-menu menu-item-matt-lewis"><a href="http://dailycaller.com/blog/matt-lewis/">Matt Lewis</a></li>
<li class="divider"></li><li id="menu-item-4062044" class="menu-item menu-item-main-menu menu-item-the-mirror"><a href="http://dailycaller.com/blog/the-mirror/">The Mirror</a></li>
<li class="divider"></li><li id="menu-item-3922704" class="menu-item menu-item-main-menu menu-item-dc-trawler"><a href="http://dailycaller.com/blog/dc-trawler/">DC Trawler</a></li>
<li class="divider"></li><li id="menu-item-3922709" class="last-menu-item menu-item menu-item-main-menu menu-item-ginni-thomas"><a href="http://dailycaller.com/section/ginni-thomas/">Ginni Thomas</a></li>
</ul> <div class="mobile-menu-footer-sidebar show-for-small">
<div id="dc_morning_email-6" class="box dc_morning_email-6"><h2>Register for Emails</h2><div class="widget"> <iframe class="subscribe" src="http://dailycaller.com/wp-content/themes/thedc/library/inc/tools/goldlasso/mainsubscribe.php"></iframe>
<div class="clear"></div></div></div> </div>
</aside><div id=reskin-ad class=hide-for-medium-down>
<div id="div-gpt-ad-1372431440336-0" style="width:2000px; height:1500px;">
<script type="text/javascript">
googletag.cmd.push( function() {
googletag.display( 'div-gpt-ad-1372431440336-0' );
});
</script>
</div><!-- #div-gpt-ad-1372431440336-0 -->
</div><!-- #reskin-ad.hide-for-medium-down --><div id="trends"><div class="row"> </div></div>
<header id="masthead" class="site-header">
<div class="row topassets">
<div class="small-5 medium-2 large-2 columns social-icons">
<a class="top-bar-social" href="http://www.twitter.com/dailycaller"><span class="icon-twitter"> </span></a> <a class="top-bar-social" href="http://www.facebook.com/DailyCaller"><span class="icon-facebook"> </span></a> <a class="top-bar-social" href="https://plus.google.com/104273926598894453484/posts"><span class="icon-googleplus"> </span></a> <a class="top-bar-social" href="https://www.linkedin.com/company/the-daily-caller"><span class="icon-linkedin"> </span></a> </div>
<div class="medium-7 large-7 columns hide-for-small logo"><h1 class="dailycaller"><a href="http://dailycaller.com" title="The Daily Caller">DailyCaller</a></h1></div>
<div class="small-7 medium-3 large-3 columns searchbox"><ul class="inline-list right">
<li class="mag"><div id="search_icon" class="closed"><span class="icon-search large icon"> </span></div></li><li class="search-field">
<form method="get" id="searchform2" action="http://dailycaller.com/search"><div class="row collapse"><label class="screen-reader-text" for="s">Search:</label>
<div class="small-12 columns"><input type="text" value="" name="q" id="q"><input type="submit" id="searchsubmit" value="Search"></div></div></form>
</li></ul>
</div>
<div id="search_box" class="closed">
<form id="searchform" method="get" action="http://dailycaller.com/search">
<div class="row collapse">
<div class="small-1 columns"> </div>
<div class="small-8 columns">
<input type="text" aria-label="Search" tabindex="-1" value="" name="q" id="q" onfocus="this.value=''">
</div>
<div class="small-2 columns">
<input type="submit" class="button postfix" id="searchsubmit" value="Search">
</div>
<div class="small-1 columns"> </div>
</div>
</form>
</div>
</div>
<div class="menuassets hide-for-medium hide-for-small">
<div class="contain-to-grid sticky">
<nav class="top-bar" data-topbar>
<ul class="title-area">
<li class="name"></li>
<li class="toggle-topbar menu-icon"><a href="#"><span></span></a></li>
</ul>
<section class="top-bar-section">
<ul>
<li class="divider"></li><li id="menu-item-3620791" class="hidetext iconlogo menu-item menu-item-main-menu menu-item-home"><a href="/">Home</a></li>
<li class="divider"></li><li id="menu-item-3922661" class="menu-item menu-item-main-menu menu-item-politics"><a href="http://dailycaller.com/section/politics/">Politics</a></li>
<li class="divider"></li><li id="menu-item-3922662" class="menu-item menu-item-main-menu menu-item-us"><a href="http://dailycaller.com/section/us/">US</a></li>
<li class="divider"></li><li id="menu-item-3922663" class="menu-item menu-item-main-menu menu-item-entertainment"><a href="http://dailycaller.com/section/entertainment/">Entertainment</a></li>
<li class="divider"></li><li id="menu-item-3922664" class="menu-item menu-item-main-menu menu-item-sports"><a href="http://dailycaller.com/section/sports/">Sports</a></li>
<li class="divider"></li><li id="menu-item-3922665" class="menu-item menu-item-main-menu menu-item-business"><a href="http://dailycaller.com/section/business/">Business</a></li>
<li class="divider"></li><li id="menu-item-3922666" class="menu-item menu-item-main-menu menu-item-tech"><a href="http://dailycaller.com/section/tech/">Tech</a></li>
<li class="divider"></li><li id="menu-item-3922668" class="menu-item menu-item-main-menu menu-item-education"><a href="http://dailycaller.com/section/education/">Education</a></li>
<li class="divider"></li><li id="menu-item-3922669" class="current-post-ancestor current-post-parent menu-item menu-item-main-menu menu-item-opinion"><a href="http://dailycaller.com/section/opinion/">Opinion</a></li>
<li class="divider"></li><li id="menu-item-3922671" class="menu-item menu-item-main-menu menu-item-guns-and-gear"><a href="http://dailycaller.com/section/guns-and-gear/">Guns and Gear</a></li>
<li class="divider"></li><li id="menu-item-4000372" class="menu-item menu-item-main-menu menu-item-video"><a href="http://video.dailycaller.com/">Video</a></li>
<li class="divider"></li><li id="menu-item-3443825" class="menu-item menu-item-main-menu menu-item-blogs has-dropdown"><a href="http://dailycaller.com/blogs/">Blogs</a>
<ul class="dropdown">
<li id="menu-item-3957652" class="menu-item menu-item-main-menu menu-item-the-mirror"><a href="http://dailycaller.com/section/the-mirror/">The Mirror</a></li>
<li id="menu-item-3922672" class="menu-item menu-item-main-menu menu-item-kausfiles"><a href="http://dailycaller.com/blog/kausfiles/">KausFiles</a></li>
<li id="menu-item-3922673" class="menu-item menu-item-main-menu menu-item-matt-lewis"><a href="http://dailycaller.com/blog/matt-lewis/">Matt Lewis</a></li>
<li id="menu-item-3922677" class="menu-item menu-item-main-menu menu-item-dc-trawler"><a href="http://dailycaller.com/blog/dc-trawler/">DC Trawler</a></li>
<li id="menu-item-3922674" class="menu-item menu-item-main-menu menu-item-ask-matt-labash"><a href="http://dailycaller.com/section/ask-matt-labash/">Ask Matt Labash</a></li>
</ul>
</li>
<li class="divider"></li><li id="menu-item-3443826" class="last-menu-item menu-item menu-item-main-menu menu-item-jobs"><a href="http://dailycaller.com/jobs-board/">Jobs</a></li>
</ul>
<ul class="search-menu left"></ul>
</section>
</nav>
</div></div>
</header>
<section id="topad-1" class="topad row">
<!-- Post ID , Account 10519169, Label Ann_Coulter/Ann_Coulter_Articles, Ad ID div-gpt-ad-1378388834355-1, Adpos top, Ad Array [728, 90], [900, 90], [970, 150], [970, 250], [320, 50], [970, 90], Ad Slot -->
<div class="ad_container small-12 columns box">
<div id=div-gpt-ad-1378388834355-1>
<script>
googletag.cmd.push( function() {
googletag.display( 'div-gpt-ad-1378388834355-1' );
});
</script>
</div><!-- #div-gpt-ad-1378388834355-1 -->
</div><!-- .ad_container.small-12.columns.box --></section>
<section id="topad-2" class="topad row hide-for-small"> <div id='taboola-above-article-thumbs-mix' style="margin:0rem 1rem"></div>
<script type="text/javascript">
window._taboola = window._taboola || [];
_taboola.push({mode:'hybrid-thumbs-1r', container:'taboola-above-article-thumbs-mix', placement:'above-article-thumbs', target_type:'mix'});
</script>
</section>
<section id="container" class="row">
<div id="primary" class="small-12 medium-7 large-8 columns single content-area">
<main id="main" class="site-main" role="main">
<div id="post-4419111" class="post-4419111 post type-post status-publish format-standard hentry category-uncategorized tag-ann-coulter tag-fbi tag-kwanzaa tag-maulana-karenga tag-patty-hearst">
<div class="full-page-article left-col">
<div class="section">Ann Coulter</div>
<div class="pic-container">
<div id="pp-featured-wrapper" style="position: absolute; z-index: 1000; border: solid 1px black; ">
<div class="ndn_embed" id="ndn-video-player-1" data-config-distributor-id="90046"></div>
</div>
<img title='' alt='' src='http://cdn01.dailycaller.com/wp-content/uploads/2014/01/coulter-e1390456183672.png' width='610' /> </div>
<h1>Happy Kwanzaa! The Holiday Brought To You By The FBI</h1>
<div class="dateline">
11:57 AM 12/25/2014 </div>
<script type="text/javascript">
jQuery(document).ready( function() {
dc_setup_social_bar('http%3A%2F%2Fdailycaller.com%2F2014%2F12%2F25%2Fhappy-kwanzaa-the-holiday-brought-to-you-by-the-fbi%2F', 'Happy+Kwanzaa%21+The+Holiday+Brought+To+You+By+The+FBI', '4419111');
});
</script>
<div id="share_bar">
<div class="row share">
<div class="socialbuttons small-12 columns">
<div class="facebook facebook-social-bar social-bar small-3 columns lr">
<span class="icon-facebook left"></span><span class="count right hide-for-small"> </span>
</div>
<div class="twitter twitter-social-bar social-bar small-3 columns lr">
<span class="icon-twitter left"></span><span class="count right hide-for-small"> </span>
</div>
<div class="gplus gplus-social-bar social-bar small-3 columns lr">
<span class="icon-googleplus left"></span><span class="count right hide-for-small"> </span>
</div>
<div class="options-social-bar small-3 columns io">
<div class="email-social-bar social-bar small-1 quarter columns io">
<span class="icon-envelope left"></span>
</div>
<div class="print-social-bar social-bar small-1 quarter columns io">
<span class="icon-print left"></span>
</div>
<div class="comment-social-bar social-bar small-1 quarter columns io">
<span class="icon-bubbles left"></span>
</div>
<div class="extended-social-bar social-bar small-1 quarter columns io end">
<span class="icon-share left"></span>
</div>
</div>
</div>
</div>
</div>
<div name="email-social-box" id="email-social-box"></div>
<div name="extended-social-box" id="extended-social-box">
<div class="row share">
<div class="socialbuttons small-12 columns">
<div class="pinterest-social-bar social-bar small-4 columns lr">
<span class="icon-pinterest left hide-for-medium-down"> Pinterest</span>
<span class="icon-pinterest left hide-for-large-up"></span>
</div>
<div class="reddit-social-bar social-bar small-4 columns lr">
<span class="icon-reddit left hide-for-medium-down"> Reddit</span>
<span class="icon-reddit left hide-for-large-up"></span>
</div>
<div class="linkedin-social-bar social-bar small-4 columns lr">
<span class="icon-linkedin left hide-for-medium-down"> LinkedIn</span>
<span class="icon-linkedin left hide-for-large-up"></span>
</div>
</div>
</div>
</div> <div class="article-data" id="article-data">
<div class="author-box clearfix"><img class="avatar avatar-96 photo" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="http://cdn01.dailycaller.com/wp-content/user_photos/acoulter-2110861046.jpg" alt="Photo of Ann Coulter" /><noscript><img class="avatar avatar-96 photo" src="http://cdn01.dailycaller.com/wp-content/user_photos/acoulter-2110861046.jpg" alt="Photo of Ann Coulter" /></noscript><div class="data"><div class="name" id="name">Ann Coulter</div><div class="authortitle">Political Commentator</div><ul class="author"><li><span class="icon-newspaper"></span><a href="http://dailycaller.com/author/acoulter/" target="_blank">See All Articles</a></li><li><span class="icon-feed2"></span><a href="http://dailycaller.com/author/acoulter/feed/" target="_blank">Subscribe to RSS</a></li><li><span class="icon-book"></span><span id="author-bio-link"><a href="#" data-options="align:right" data-dropdown="bio" title="">Bio</a></span><ul id="bio" class="small content f-dropdown" data-dropdown-content><h3>Ann Coulter</h3><p>Ann Coulter is a political commentator and author.</p></ul></li></ul></div></div> <div class="related-articles-sidebar"></div>
<div class="topics article-icon"></div>
</div> <div class="post article-content" id="thepost">
<ul id="sharebar" class="floating-social-bar-inner clearingfix">
<li class="facebook-float socialbutton"><div class="fb-share-button" data-href="http://dailycaller.com/2014/12/25/happy-kwanzaa-the-holiday-brought-to-you-by-the-fbi/" data-type="button"></div></li>
<li class="twitter-float socialbutton"><a href="http://twitter.com/share" class="twitter-share-button" data-count="none" data-via="dailycaller" data-text="<?php echo $twitter_title; ?>" data-url="<?php echo $permalink; ?>">Tweet</a></li>
<li class="reddit-float socialbutton"><div class="redditButtonFloat"></div></li>
</ul><div id="postid" style="display: none;">4419111</div><p>I will not be shooting any Black Panthers this week because I am Kwanza-reform, and we are not that observant. Kwanzaa, celebrated exclusively by white liberals, is a fake holiday invented in 1966 by black radical/FBI stooge, Ron Karenga — aka Dr. Maulana Karenga, founder of United Slaves, the violent nationalist rival to the Black Panthers. In the annals of the American ’60s, Karenga was the Father Gapon, pawn of the czarist police.</p>
<p>In what was ultimately a foolish gambit, during the madness of the ’60s, the FBI encouraged the most extreme black nationalist organizations in order to discredit and split the left. The more preposterous the group, the better. By that criterion, Karenga’s United Slaves was perfect.</p><div id="ym_1047030974504090411" class="ym"></div><script type="text/javascript">(function(e,t){if(t._ym===void 0){t._ym="";var m=e.createElement("script");m.type="text/javascript",m.async=!0,m.src="//static.yieldmo.com/ym.m4.js",(e.getElementsByTagName("head")[0]||e.getElementsByTagName("body")[0]).appendChild(m)}else t._ym instanceof String||void 0===t._ym.chkPls||t._ym.chkPls()})(document,window);</script>
<p>Despite modern perceptions that blend all the black activists of the ’60s, the Black Panthers did not hate whites. Although some of their most high-profile leaders were drug dealers and murderers, they did not seek armed revolution.</p>
<p>Those were the precepts of Karenga’s United Slaves. The United Slaves were proto-fascists, walking around in dashikis, gunning down Black Panthers and adopting invented “African” names.</p>
<p>And hasn’t that been a huge help to the black community? The black man who assassinated two New York City cops last week went by the name “Ismaaiyl Abdullah-Muhammad,” and the man who attempted to hatchet four NYPD officers to death in October had adopted the name “Zaim Farouq Abdul-Malik.”</p><div id='taboola-mid-article-thumbs-mix'></div>
<script type="text/javascript">
window._taboola = window._taboola || [];
_taboola.push({mode:'thumbs-1r-mid', container:'taboola-mid-article-thumbs-mix', placement:'mid-article-thumbs', target_type:'mix'});
</script>
<p>It’s as if David Duke invented a holiday called “Anglika,” which he based on the philosophy of “Mein Kampf” — and clueless public school teachers began celebrating the made-up, racist holiday.</p>
<p>Whether Karenga was a willing FBI dupe, or just a dupe, remains unclear.</p>
<p>In the category of the-gentleman-doth-protest-too-much, back in the ’70s, Karenga was quick to criticize Nigerian newspapers that claimed that certain American black radicals were CIA operatives. Karenga publicly denounced the idea, saying, “Africans must stop generalizing about the loyalties and motives of Afro-Americans, including the widespread suspicion of black Americans being CIA agents.”</p>
<p>In a 1995 interview with Ethnic NewsWatch, Karenga matter-of-factly explained that the forces out to get O.J. Simpson for the “framed” murder of two whites included: “the FBI, the CIA, the State Department, Interpol, the Chicago Police Department” and so on. Karenga should know about FBI infiltration. (He further noted that the evidence against O.J. did not “eliminate unreasonable doubt” — an interesting standard of proof.)</p><div id="ym_1047031452335979308" class="ym"></div><script type="text/javascript">(function(e,t){if(t._ym===void 0){t._ym="";var m=e.createElement("script");m.type="text/javascript",m.async=!0,m.src="//static.yieldmo.com/ym.m4.js",(e.getElementsByTagName("head")[0]||e.getElementsByTagName("body")[0]).appendChild(m)}else t._ym instanceof String||void 0===t._ym.chkPls||t._ym.chkPls()})(document,window);</script>
<p>Now we know: The FBI fueled the bloody rivalry between the Panthers and United Slaves. In one barbarous outburst, Karenga’s United Slaves shot two Black Panthers to death on the UCLA campus: Al “Bunchy” Carter and John Huggins. Karenga himself served time, a useful stepping-stone for his current position as a black studies professor at California State University at Long Beach.</p>
<p>(Speaking of which, Rep. Paul Ryan certainly is right about what a fantastic job his mentor Jack Kemp did reaching out to all those “socially conservative” minorities. Look at how California has swung decisively to the right since Kemp started all that outreach stuff. Good luck winning California now, Democrats!)</p>
<p>Back to the esteemed Cal State professor: Karenga’s invented holiday is a nutty blend of schmaltzy ’60s rhetoric, black racism and Marxism. The seven principles of Kwanzaa are the very same seven principles of the Symbionese Liberation Army, another invention of the Worst Generation.</p>
<p>In 1974, Patty Hearst, kidnap victim-cum-SLA revolutionary, posed next to the banner of her alleged captors, a seven-headed cobra. Each snakehead stood for one of the SLA’s revolutionary principles: Umoja, Kujichagulia, Ujima, Ujamaa, Nia, Kuumba and Imani. These are the exact same seven “principles” of Kwanzaa. And here’s something interesting: Kawaida, Kwanzaa and Kuumba are also the only three Kardashian sisters not to have their own shows on the E! Network.</p>
<p>Kwanzaa praises collectivism in every possible area of life — economics, work, personality, even litter removal. (“Kuumba: Everyone should strive to improve the community and make it more beautiful.”) It takes a village to raise a police snitch. When Karenga was asked to distinguish Kawaida, the philosophy underlying Kwanzaa, from “classical Marxism,” he essentially said that, under Kawaida, we also hate whites.</p>
<div class="post_tags">Tags: <a href='http://dailycaller.com/buzz/ann-coulter/' title='Ann Coulter Tag' class='ann-coulter'>Ann Coulter</a>, <a href='http://dailycaller.com/buzz/fbi/' title='FBI Tag' class='fbi'>FBI</a>, <a href='http://dailycaller.com/buzz/kwanzaa/' title='Kwanzaa Tag' class='kwanzaa'>Kwanzaa</a>, <a href='http://dailycaller.com/buzz/maulana-karenga/' title='Maulana Karenga Tag' class='maulana-karenga'>Maulana Karenga</a>, <a href='http://dailycaller.com/buzz/patty-hearst/' title='Patty Hearst Tag' class='patty-hearst'>Patty Hearst</a></div><div id="pagination" class="row"><div class="readmore"><a href="http://dailycaller.com/2014/12/25/happy-kwanzaa-the-holiday-brought-to-you-by-the-fbi/2/">Next Page</a></div><div class="nextpage"><a href="http://dailycaller.com/2014/12/25/happy-kwanzaa-the-holiday-brought-to-you-by-the-fbi/2/">Continued on Next Page >></a></div><div class="pages"> <div class="page">1</div> <a href="http://dailycaller.com/2014/12/25/happy-kwanzaa-the-holiday-brought-to-you-by-the-fbi/2/"><div class="page">2</div></a></div></div><div class="clear"></div><div id="share-wrapper" class="row">
<div class="socialbuttons columns">
<div class="facebook facebook-social-bar float-bar small-2 columns lr">
<span class="icon-facebook left"></span>
<span class="count hide-for-small right"> </span>
</div>
<div class="twitter twitter-social-bar float-bar small-2 columns lr">
<span class="icon-twitter left"></span>
<span class="count hide-for-small right"> </span>
</div>
<div class="gplus gplus-social-bar float-bar small-2 columns lr">
<span class="icon-googleplus left"></span>
<span class="count hide-for-small right"> </span>
<span class="count hide-for-medium-down right">Share</span>
</div>
<div class="options-social-bar float-bar small-6 columns io">
<div class="email-social-bar float-bar small-1 columns io">
<span class="icon-envelope left"> </span>
</div>
<div class="print-social-bar float-bar small-1 columns io">
<span class="icon-print left"> </span>
</div>
<div class="comment-social-bar float-bar small-1 columns io">
<span class="icon-bubbles left"> </span>
</div>
<div class="extended-social-bar float-bar small-1 columns io">
<span class="icon-share left"> </span>
</div>
<div class="page-options gototop float-bar small-2 columns io show-for-medium-down end">
<span class="icon-arrow-up9 left"><span class="top">TOP</span></span>
</div>
</div>
</div>
</div>
<div class="comments-link">
<i class="icon social foundicon-chat" title="Comments"></i>
<a href="http://dailycaller.com/2014/12/25/happy-kwanzaa-the-holiday-brought-to-you-by-the-fbi/#respond" title="Comment on Happy Kwanzaa! The Holiday Brought To You By The FBI"><span class="dsq-postid" rel="4419111 http://dailycaller.com/?p=4419111"><span class="leave-comment">Leave a Comment</span></span></a> </div>
<div id='taboola-below-article-thumbs-mix'></div>
<script type="text/javascript">
window._taboola = window._taboola || [];
_taboola.push({mode:'thumbs-2r', container:'taboola-below-article-thumbs-mix', placement:'below-article-thumbs', target_type:'mix'});
</script>
<div id='taboola-below-article-text-links-mix'></div>
<script type="text/javascript">
window._taboola = window._taboola || [];
_taboola.push({mode:'hybrid-text-links-2c', container:'taboola-below-article-text-links-mix', placement:'below-article-text-links', target_type:'mix'});
</script>
<div id='taboola-below-article-thumbs-2nd-mix'></div>
<script type="text/javascript">
window._taboola = window._taboola || [];
_taboola.push({mode:'thumbs-1r', container:'taboola-below-article-thumbs-2nd-mix', placement:'below-article-thumbs-2nd', target_type:'mix'});
</script>
</div>
<nav class="nav-single">
<span class="nav-previous alignleft">
<a href="http://dailycaller.com/2014/12/18/one-in-five-people-who-write-for-rolling-stone-are-morons/" rel="prev"><span class="meta-nav">←</span> One In Five People Who Write For Rolling Stone Are Morons</a> </span>
<span class="nav-next alignright">
<a href="http://dailycaller.com/2014/12/31/liberals-if-the-shoe-doesnt-fit-make-everyone-wear-it/" rel="next">Liberals: If The Shoe Doesn’t Fit, Make Everyone Wear It <span class="meta-nav">→</span></a> </span>
</nav>
<center>
</center><div class="ndn_embed" id="ndn-video-player-2" data-config-distributor-id="90046"></div>
<div id="disqus_thread">
</div>
<script type="text/javascript">
/* <![CDATA[ */
var disqus_url = 'http://dailycaller.com/2014/12/25/happy-kwanzaa-the-holiday-brought-to-you-by-the-fbi/';
var disqus_identifier = '4419111 http://dailycaller.com/?p=4419111';
var disqus_container_id = 'disqus_thread';
var disqus_domain = 'disqus.com';
var disqus_shortname = 'thedailycaller';
var disqus_title = "Happy Kwanzaa! The Holiday Brought To You By The FBI";
var disqus_config = function () {
var config = this; // Access to the config object
config.language = '';
/* Add the ability to add javascript callbacks */
/*
All currently supported events:
* preData — fires just before we request for initial data
* preInit - fires after we get initial data but before we load any dependencies
* onInit - fires when all dependencies are resolved but before dtpl template is rendered
* afterRender - fires when template is rendered but before we show it
* onReady - everything is done
*/
config.callbacks.preData.push(function() {
// clear out the container (its filled for SEO/legacy purposes)
document.getElementById(disqus_container_id).innerHTML = '';
});
this.page.remote_auth_s3 = 'W10= 749991e49f75625e5f9bbde6c47828e666823e5c 1420285683';
this.page.api_key = 'ORZ4taXcGjnx1LLOxAoSwFiuOzgRlD813O121whB0GyYyceTY7GPqwFhcUAkJsGf';
this.sso = {
name: "The Daily Caller",
button: "",
icon: "",
url: "http://dailycaller.com/wp-login.php",
logout: "http://dailycaller.com/wp-login.php?action=logout",
width: "800",
height: "700"
} };
/* ]]> */
</script>
<script type="text/javascript">
/* <![CDATA[ */
var DsqLocal = {
'trackbacks': [
],
'trackback_url': "http:\/\/dailycaller.com\/2014\/12\/25\/happy-kwanzaa-the-holiday-brought-to-you-by-the-fbi\/trackback\/" };
/* ]]> */
</script>
<script type="text/javascript">
/* <![CDATA[ */
(function() {
var dsq = document.createElement('script'); dsq.type = 'text/javascript';
dsq.async = true;
dsq.src = '//' + disqus_shortname + '.' + 'disqus.com' + '/' + 'embed' + '.js' + '?pname=wordpress&pver=2.77';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
})();
/* ]]> */
</script>
</main>
</div>
<div
id=secondary
class="sidebar-single widget-area small-12 medium-5 large-4 columns"
role="complementary"
>
<!-- zone: ann-coulter, sponsored: -->
<!-- Post ID , Account 10519169, Label Ann_Coulter/Ann_Coulter_Articles, Ad ID div-gpt-ad-1378388834355-2, Adpos right1, Ad Array [300, 250], [300, 600], [300, 1050], Ad Slot -->
<div class="ad_container small-12 columns box">
<div id=div-gpt-ad-1378388834355-2>
<script>
googletag.cmd.push( function() {
googletag.display( 'div-gpt-ad-1378388834355-2' );
});
</script>
</div><!-- #div-gpt-ad-1378388834355-2 -->
</div><!-- .ad_container.small-12.columns.box --> <div class="small-12 columns blank"><div style="padding-top:10px;padding-bottom:10px;" class="ndn_embed" data-config-widget-id="29653" data-config-type="VideoLauncher/Slider300x250" data-config-tracking-group="90046"></div></div>
<div class="small-12 columns blank"><div>
<table style="border:1px solid #000;border-radius:5px;background:#eeeeee">
<tr>
<td style="max-width:334px">
<img src="https://s3.amazonaws.com/Ad_Creatives/1401362_371041099693357_1026611913_o+(1)+(1).jpg" />
<center style="text-align: center;padding-top:5px;"><font face="verdana, geneva, sans-serif"><span style="font-size: 16px;"><b>The federal government is out of control. A <a href="https://d3n8a8pro7vhmx.cloudfront.net/conventionofstates/pages/142/attachments/original/1416248525/COS_Handbook.pdf?1416248525" target="_blank">Convention of States</a>
can stop them.</b></span></font></center>
<table style="border:1px;border-radius:5px;background:#003366;margin:10px;">
<tr>
<td>
<center style="text-align: center;"><font color="#ffffff" face="arial, verdana, geneva, sans-serif"><span style="font-size: 14px;"><b>TAKE ACTION
TO RESTORE MEANINGFUL CONSTITUTIONAL LIMITS TO THE
FEDERAL GOVERNMENT.</span></br></font>
</center>
</td>
</tr>
</table>
<center style="text-align: center;"><b><font color="#000" face="arial, verdana, geneva, sans-serif"><span style="font-size: 24px;"><span style="font-size: 26px;">SIGN THE PETITION!</b></span></b></center>
<center>
<form action="http://e.dailycaller-alerts.com/forms/l.jsp" target='_blank'>
<input type='hidden' name='cid' value='1248' />
<input type='hidden' name='id' value='8' />
<input type="hidden" name="num_questions" value="7">
<input type="hidden" name="q_0" value="31" />
<input type="hidden" name="q_1" value="32" />
<input type="hidden" name="q_6" value="1" />
<table style="background-color:#eeeeee;border:none;margin:0px;">
<tbody>
<tr style="background-color:#eeeeee;border:none;margin:0px;">
<td style="padding-top:0px;padding-bottom:0px;"><font color="#000080" face="Arial" size="2"><b>FIRST NAME</b></font>: <input name="answer_31" size="20" type="text" value="" /></td>
<td style="padding-top:0px;padding-bottom:0px;"><font color="#000080" face="Arial" size="2"><b>LAST NAME</b></font>: <input name="answer_32" size="20" type="text" value="" /></td>
</tr>
</table>
<table style="background-color:#eeeeee;border:none;margin:0px;">
<tr>
<td style="width:180px"><font color="#000080" face="Arial" size="2"><b>E-MAIL</b></font>: <input name="answer_1" size="25" type="text" value="" /></td>
<td><input checked="checked" name="l_186" type="checkbox" value="Y" /><span style="font:arial;font-size:10px;">I agree* </span><input style="font:arial;font-size:14px;color:white;text-transform:uppercase;background-color:#832921;height:30px;width:80px;" type="submit" value="Submit" /></td>
</tr>
</tbody>
</table>
</form>
</center>
<span style="font-size:9px;"><span style="font-family:lucida sans unicode,lucida grande,sans-serif;">*By submitting. you agree that The Daily Caller and Convention of States may help you stay up to date on the issues by sending news and special offers. You may unsubscribe at any time. You also agree to The Daily Caller's <a href="http://dailycaller.com/footer/privacy-policy/" target="_blank">Privacy Policy</a> and <a href="http://dailycaller.com/footer/terms-of-use/" target="_blank">Terms of Use</a>.</span></span></center>
</td>
</tr>
</table>
</div></div>
<!-- Post ID , Account 10519169, Label Ann_Coulter/Ann_Coulter_Articles, Ad ID div-gpt-ad-1378388834355-3, Adpos right2, Ad Array [300, 250], [300, 600], Ad Slot 3 -->
<div class="ad_container small-12 columns box">
<div id=div-gpt-ad-1378388834355-3>
<script>
googletag.cmd.push( function() {
googletag.display( 'div-gpt-ad-1378388834355-3' );
});
</script>
</div><!-- #div-gpt-ad-1378388834355-3 -->
</div><!-- .ad_container.small-12.columns.box --> <div class="small-12 columns blank"><div id="taboola-right-rail-thumbnails" style="padding-top:10px;padding-bottom:10px;"></div>
<script type="text/javascript">
window._taboola = window._taboola || [];
_taboola.push({
mode: 'thumbnails-a',
container: 'taboola-right-rail-thumbnails',
placement: 'Right Rail Thumbnails',
target_type: 'mix'
});
</script>
<script type="text/javascript">
window._taboola = window._taboola || [];
_taboola.push({flush: true});
</script></div>
<div class="small-12 columns box"><h2>More Ann Coulter</h2>
<div class="widget contentbysection Ann Coulter">
<div class="box-post pic">
<a class="lr" href="http://dailycaller.com/2014/12/31/liberals-if-the-shoe-doesnt-fit-make-everyone-wear-it/" title="Liberals: If The Shoe Doesn’t Fit, Make Everyone Wear It"><img src="http://cdn01.dailycaller.com/wp-content/uploads/2014/01/coulter-e1390456183672.png" alt="Liberals: If The Shoe Doesn’t Fit, Make Everyone Wear It" /></a>
<div class="lr"><h3 class="post"><a title="Liberals: If The Shoe Doesn’t Fit, Make Everyone Wear It" href="http://dailycaller.com/2014/12/31/liberals-if-the-shoe-doesnt-fit-make-everyone-wear-it/">Liberals: If The Shoe Doesn’t Fit, Make Everyone Wear It</a></h3>
<div class="date">11:35 AM 12/31/2014</div></div>
</div>
<div class="box-post pic">
<a class="lr" href="http://dailycaller.com/2014/12/25/happy-kwanzaa-the-holiday-brought-to-you-by-the-fbi/" title="Happy Kwanzaa! The Holiday Brought To You By The FBI"><img src="http://cdn01.dailycaller.com/wp-content/uploads/2014/01/coulter-e1390456183672.png" alt="Happy Kwanzaa! The Holiday Brought To You By The FBI" /></a>
<div class="lr"><h3 class="post"><a title="Happy Kwanzaa! The Holiday Brought To You By The FBI" href="http://dailycaller.com/2014/12/25/happy-kwanzaa-the-holiday-brought-to-you-by-the-fbi/">Happy Kwanzaa! The Holiday Brought To You By The FBI</a></h3>
<div class="date">11:57 AM 12/25/2014</div></div>
</div>
<div class="box-post pic">
<a class="lr" href="http://dailycaller.com/2014/12/18/one-in-five-people-who-write-for-rolling-stone-are-morons/" title="One In Five People Who Write For Rolling Stone Are Morons"><img src="http://cdn01.dailycaller.com/wp-content/uploads/2013/10/Coulter104-e1380892406168.jpg" alt="One In Five People Who Write For Rolling Stone Are Morons" /></a>
<div class="lr"><h3 class="post"><a title="One In Five People Who Write For Rolling Stone Are Morons" href="http://dailycaller.com/2014/12/18/one-in-five-people-who-write-for-rolling-stone-are-morons/">One In Five People Who Write For Rolling Stone Are Morons</a></h3>
<div class="date">1:01 AM 12/18/2014</div></div>
</div>
<div class="box-post pic">
<a class="lr" href="http://dailycaller.com/2014/12/10/the-college-rape-club/" title="The College Rape Club"><img src="http://cdn01.dailycaller.com/wp-content/uploads/2013/08/Coulter827-e1377696647220.jpg" alt="The College Rape Club" /></a>
<div class="lr"><h3 class="post"><a title="The College Rape Club" href="http://dailycaller.com/2014/12/10/the-college-rape-club/">The College Rape Club</a></h3>
<div class="date">5:10 PM 12/10/2014</div></div>
</div>
<div class="box-post pic">
<a class="lr" href="http://dailycaller.com/2014/12/03/black-people-the-media-hate-and-rand-paul-isnt-wild-about/" title="Black People The Media Hate (And Rand Paul Isn’t Wild About)"><img src="http://cdn01.dailycaller.com/wp-content/uploads/2013/11/Coulter1126-e1385465043252.jpg" alt="Black People The Media Hate (And Rand Paul Isn’t Wild About)" /></a>
<div class="lr"><h3 class="post"><a title="Black People The Media Hate (And Rand Paul Isn’t Wild About)" href="http://dailycaller.com/2014/12/03/black-people-the-media-hate-and-rand-paul-isnt-wild-about/">Black People The Media Hate (And Rand Paul Isn’t Wild About)</a></h3>
<div class="date">5:19 PM 12/03/2014</div></div>
</div>
<div class="box-post pic">
<a class="lr" href="http://dailycaller.com/2014/11/27/liberals-willing-to-fight-to-the-last-drop-of-black-blood/" title="Liberals Willing To Fight To The Last Drop Of Black Blood"><img src="http://cdn01.dailycaller.com/wp-content/uploads/2013/10/Coulter104-e1380892406168.jpg" alt="Liberals Willing To Fight To The Last Drop Of Black Blood" /></a>
<div class="lr"><h3 class="post"><a title="Liberals Willing To Fight To The Last Drop Of Black Blood" href="http://dailycaller.com/2014/11/27/liberals-willing-to-fight-to-the-last-drop-of-black-blood/">Liberals Willing To Fight To The Last Drop Of Black Blood</a></h3>
<div class="date">2:54 AM 11/27/2014</div></div>
</div>
<div class="box-post pic">
<a class="lr" href="http://dailycaller.com/2014/11/20/jonathan-gruber-is-worse-than-the-downing-street-memo/" title="Jonathan Gruber Is Worse Than The Downing Street Memo"><img src="http://cdn01.dailycaller.com/wp-content/uploads/2013/11/Coulter1126-e1385465043252.jpg" alt="Jonathan Gruber Is Worse Than The Downing Street Memo" /></a>
<div class="lr"><h3 class="post"><a title="Jonathan Gruber Is Worse Than The Downing Street Memo" href="http://dailycaller.com/2014/11/20/jonathan-gruber-is-worse-than-the-downing-street-memo/">Jonathan Gruber Is Worse Than The Downing Street Memo</a></h3>
<div class="date">1:36 AM 11/20/2014</div></div>
</div>
<div class="box-post pic">
<a class="lr" href="http://dailycaller.com/2014/11/12/voters-are-giving-you-one-more-chance-gop/" title="Voters Are Giving You One More Chance, GOP"><img src="http://cdn01.dailycaller.com/wp-content/uploads/2013/11/Coulter1126-e1385465043252.jpg" alt="Voters Are Giving You One More Chance, GOP" /></a>
<div class="lr"><h3 class="post"><a title="Voters Are Giving You One More Chance, GOP" href="http://dailycaller.com/2014/11/12/voters-are-giving-you-one-more-chance-gop/">Voters Are Giving You One More Chance, GOP</a></h3>
<div class="date">6:08 PM 11/12/2014</div></div>
</div>
<div class="box-post pic">
<a class="lr" href="http://dailycaller.com/2014/11/05/a-tough-night-at-msnbc/" title="A Tough Night At MSNBC"><img src="http://cdn01.dailycaller.com/wp-content/uploads/2013/08/Coulter825-e1377485256879.jpg" alt="A Tough Night At MSNBC" /></a>
<div class="lr"><h3 class="post"><a title="A Tough Night At MSNBC" href="http://dailycaller.com/2014/11/05/a-tough-night-at-msnbc/">A Tough Night At MSNBC</a></h3>
<div class="date">8:50 PM 11/05/2014</div></div>
</div>
<div class="box-post pic">
<a class="lr" href="http://dailycaller.com/2014/11/05/my-pre-recrimination-election-analysis/" title="My Pre-Recrimination Election Analysis"><img src="http://cdn01.dailycaller.com/wp-content/uploads/2013/11/Coulter1126-e1385465043252.jpg" alt="My Pre-Recrimination Election Analysis" /></a>
<div class="lr"><h3 class="post"><a title="My Pre-Recrimination Election Analysis" href="http://dailycaller.com/2014/11/05/my-pre-recrimination-election-analysis/">My Pre-Recrimination Election Analysis</a></h3>
<div class="date">4:10 PM 11/05/2014</div></div>
</div>
</div>
</div><!-- Post ID , Account 10519169, Label Ann_Coulter/Ann_Coulter_Articles, Ad ID div-gpt-ad-1378388834355-4, Adpos right3, Ad Array [300, 250], [300, 600], Ad Slot 4 -->
<div class="ad_container small-12 columns box">
<div id=div-gpt-ad-1378388834355-4>
<script>
googletag.cmd.push( function() {
googletag.display( 'div-gpt-ad-1378388834355-4' );
});
</script>
</div><!-- #div-gpt-ad-1378388834355-4 -->
</div><!-- .ad_container.small-12.columns.box --></div><!-- #secondary -->
</section><!-- #container -->
</div><!-- .inner-wrap -->
</div><!-- .off-canvas-wrap -->
<section class="row footer-banner"><!-- true--><!-- Post ID , Account 10519169, Label Ann_Coulter/Ann_Coulter_Articles, Ad ID div-gpt-ad-1378388834355-5, Adpos , Ad Array [728, 90], [900, 90], Ad Slot -->
<div class="ad_container small-12 columns box">
<div id=div-gpt-ad-1378388834355-5>
<script>
googletag.cmd.push( function() {
googletag.display( 'div-gpt-ad-1378388834355-5' );
});
</script>
</div><!-- #div-gpt-ad-1378388834355-5 -->
</div><!-- .ad_container.small-12.columns.box --></section><!-- .row.footer-banner -->
<footer id="footer" role="contentinfo">
<div class="row social">
<div class="small-12 medium-12 large-12 columns">
<a class="footer-social" href="http://www.twitter.com/dailycaller"><span class="icon-twitter"></span></a>
<a class="footer-social" href="http://www.facebook.com/DailyCaller"><span class="icon-facebook"></span></a>
<a class="footer-social" href="https://plus.google.com/104273926598894453484/posts"><span class="icon-googleplus"></span></a>
<a class="footer-social" href="https://www.linkedin.com/company/the-daily-caller"><span class="icon-linkedin"></span></a>
</div><!-- .small-12.medium-12.large-12.columns -->
</div><!-- .row.social -->
<div class="row">
<div class="small-12 medium-5 large-4 columns">
<p class="copyright lt">
© Copyright 2010 - 2015. The Daily Caller · Version 3.01.
</p><!-- .copyright.lt --> </div><!-- .small-12.medium-5.large-4.columns -->
<div class="footer-menus small-12 medium-7 large-8 columns">
<div class="small-6 medium-4 large-4 columns sections">
<h5>Sections</h5>
<div class="menu-sections-container"><ul id="menu-sections" class="menu"><li id="menu-item-3618379" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-3618379"><a href="/">Home</a></li>
<li id="menu-item-3922688" class="menu-item menu-item-type-taxonomy menu-item-object-section menu-item-3922688"><a href="http://dailycaller.com/section/politics/">Politics</a></li>
<li id="menu-item-3922689" class="menu-item menu-item-type-taxonomy menu-item-object-section menu-item-3922689"><a href="http://dailycaller.com/section/us/">US</a></li>
<li id="menu-item-3922692" class="menu-item menu-item-type-taxonomy menu-item-object-section menu-item-3922692"><a href="http://dailycaller.com/section/entertainment/">Entertainment</a></li>
<li id="menu-item-3922694" class="menu-item menu-item-type-taxonomy menu-item-object-section menu-item-3922694"><a href="http://dailycaller.com/section/sports/">Sports</a></li>
<li id="menu-item-3922690" class="menu-item menu-item-type-taxonomy menu-item-object-section menu-item-3922690"><a href="http://dailycaller.com/section/business/">Business</a></li>
<li id="menu-item-3922695" class="menu-item menu-item-type-taxonomy menu-item-object-section menu-item-3922695"><a href="http://dailycaller.com/section/tech/">Tech</a></li>
<li id="menu-item-3922696" class="menu-item menu-item-type-taxonomy menu-item-object-section menu-item-3922696"><a href="http://dailycaller.com/section/education/">Education</a></li>
<li id="menu-item-3922691" class="menu-item menu-item-type-taxonomy menu-item-object-section current-post-ancestor current-menu-parent current-post-parent menu-item-3922691"><a href="http://dailycaller.com/section/opinion/">Opinion</a></li>
<li id="menu-item-4000366" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-4000366"><a href="http://video.dailycaller.com/">Video</a></li>
<li id="menu-item-3922697" class="menu-item menu-item-type-taxonomy menu-item-object-section menu-item-3922697"><a href="http://dailycaller.com/section/guns-and-gear/">Guns and Gear</a></li>
<li id="menu-item-3443841" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3443841"><a href="http://dailycaller.com/blogs/">Blogs</a></li>
<li id="menu-item-3443842" class="last-menu-item menu-item menu-item-type-custom menu-item-object-custom menu-item-3443842"><a href="http://dailycaller.com/jobs-board/">Jobs</a></li>
</ul></div> </div><!-- .small-6.medium-4.large-4.columns.sections -->
<div class="small-6 medium-4 large-4 columns columnists">
<h5>Columns</h5>
<div class="menu-columns-container"><ul id="menu-columns-1" class="menu"><li id="menu-item-3922707" class="menu-item menu-item-type-taxonomy menu-item-object-section current-post-ancestor current-menu-parent current-post-parent menu-item-3922707"><a href="http://dailycaller.com/section/ann-coulter/">Ann Coulter</a></li>
<li id="menu-item-3922708" class="menu-item menu-item-type-taxonomy menu-item-object-section menu-item-3922708"><a href="http://dailycaller.com/section/ask-matt-labash/">Ask Matt Labash</a></li>
<li id="menu-item-3922705" class="menu-item menu-item-type-taxonomy menu-item-object-blog menu-item-3922705"><a href="http://dailycaller.com/blog/kausfiles/">KausFiles</a></li>
<li id="menu-item-3922706" class="menu-item menu-item-type-taxonomy menu-item-object-blog menu-item-3922706"><a href="http://dailycaller.com/blog/matt-lewis/">Matt Lewis</a></li>
<li id="menu-item-4062044" class="menu-item menu-item-type-taxonomy menu-item-object-blog menu-item-4062044"><a href="http://dailycaller.com/blog/the-mirror/">The Mirror</a></li>
<li id="menu-item-3922704" class="menu-item menu-item-type-taxonomy menu-item-object-blog menu-item-3922704"><a href="http://dailycaller.com/blog/dc-trawler/">DC Trawler</a></li>
<li id="menu-item-3922709" class="last-menu-item menu-item menu-item-type-taxonomy menu-item-object-section menu-item-3922709"><a href="http://dailycaller.com/section/ginni-thomas/">Ginni Thomas</a></li>
</ul></div> </div><!-- .small-6.medium-4.large-4.columns.columnists -->
<div class="small-12 medium-4 large-4 columns">
<div class="small-6 medium-12 large-12 columns corporate lr">
<h5>Corporate</h5>
<div class="menu-corporate-container"><ul id="menu-corporate" class="menu"><li id="menu-item-3443897" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3443897"><a href="http://dailycaller.com/about-us/">About Us</a></li>
<li id="menu-item-4312597" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-4312597"><a href="http://dailycaller.com/footer/employment/">Employment</a></li>
<li id="menu-item-3867016" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-3867016"><a target="_blank" href="http://www.co-store.com/dailycaller">Daily Caller Store</a></li>
<li id="menu-item-4222732" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-4222732"><a href="http://dailycaller.com/footer/terms-of-use/">Terms Of Use</a></li>
<li id="menu-item-4222747" class="last-menu-item menu-item menu-item-type-post_type menu-item-object-page menu-item-4222747"><a href="http://dailycaller.com/footer/privacy-policy/">Privacy Policy</a></li>
</ul></div> </div><!-- .small-6.medium-12.large-12.columns.corporate.lr -->
<div class="small-6 medium-12 large-12 columns follow">
<h5>Follow</h5>
<div class="menu-follow-container"><ul id="menu-follow" class="menu"><li id="menu-item-3443868" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-3443868"><a href="http://www.facebook.com/DailyCaller">Facebook</a></li>
<li id="menu-item-3443869" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-3443869"><a href="http://www.twitter.com/dailycaller">Twitter</a></li>
<li id="menu-item-3443870" class="last-menu-item menu-item menu-item-type-custom menu-item-object-custom menu-item-3443870"><a href="https://plus.google.com/104273926598894453484/posts">Google+</a></li>
</ul></div> </div><!-- .small-6.medium-12.large-12.columns.follow -->
</div><!-- .small-12.medium-4.large-4.columns -->
</div><!-- .footer-menus.small-12.medium-7.large-8.columns -->
<div class="small-12 columns show-for-small"> </div><!-- .small-12.columns.show-for-small -->
</div><!-- .row -->
</footer><!-- #footer.contentinfo -->
<a class="exit-off-canvas hide-for-large-up"></a>
<div id="backtotop" class="hide-for-medium-down">Top</div><!-- start boomtrain -->
<script type="text/javascript">
!function(){function a(a){return function(){var b=Array.prototype.slice.call(arguments);return b.unshift(a),window._bt.push(b),window._bt}}window._bt=window._bt||[];for(var b=["track","identify","initialize","clear","setBsin","person.set"],c=0;c<b.length;c++){var d=window._bt,e=b[c].split("."),f=e[0],g=f;2===e.length&&(d[f]=d[f]||{},d=d[f],f=e[1],g=b[c]),d[f]=a(g)}if(!document.getElementById("analyticstrain-js")){var h=document.createElement("script");h.type="text/javascript",h.id="analyticstrain-js",h.async=!0,h.src=("https:"===document.location.protocol?"https://":"http://")+"cdn.boomtrain.com/analyticstrain-2.min.js";var i=document.getElementsByTagName("script")[0];i.parentNode.insertBefore(h,i)}}();
_bt.initialize("ffaf3cbd6095b84d8c4aa0392a8f5b21");
</script>
<!-- end boomtrain -->
<script type="text/javascript">
_bt.track("viewed", {model: "article", id: "4419111"});
_bt.identify();
</script>
<script type='text/javascript'>
var _sf_async_config={};
/** CONFIGURATION START **/
_sf_async_config.uid = 5927;
_sf_async_config.domain = 'dailycaller.com';
_sf_async_config.sections = 'Ann Coulter';
_sf_async_config.authors = 'Ann Coulter';
/** CONFIGURATION END **/
</script><script type="text/javascript">
__compete_code = 'f79605b5076c6cb89c3ab20a16faf54a';
(function () {
var s = document.createElement('script'),
d = document.getElementsByTagName('head')[0] ||
document.getElementsByTagName('body')[0],
t = 'https:' == document.location.protocol ?
'https://c.compete.com/bootstrap/' :
'http://c.compete.com/bootstrap/';
s.src = t + __compete_code + '/bootstrap.js';
s.type = 'text/javascript';
s.async = 'async';
if (d) { d.appendChild(s); }
}());
</script><!-- Begin comScore Tag -->
<script>
var _comscore = _comscore || [];
_comscore.push({ c1: "2", c2: "10110104" });
(function() {
var s = document.createElement("script"), el = document.getElementsByTagName("script")[0]; s.async = true;
s.src = (document.location.protocol == "https:" ? "https://sb" : "http://b") + ".scorecardresearch.com/beacon.js";
el.parentNode.insertBefore(s, el);
})();
</script>
<noscript>
<img src="http://b.scorecardresearch.com/p?c1=2&c2=10110104&cv=2.0&cj=1" />
</noscript>
<!-- End comScore Tag -->
<script type="text/javascript">
_bizo_data_partner_id = "2361";
</script>
<script type="text/javascript">
(function(){var b,a,u;a=document.createElement("script");a.type="text/javascript";a.async=true;u=(window.location.protocol==="https:"?"https://sjs.":"http://js.")+"bizographics.com/insight.min.js";a.src=u;b=document.getElementsByTagName("script")[0];return b.parentNode.insertBefore(a,b)})();
</script><!-- New Google Analytics -->
<script type="text/javascript">
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-12159302-1', 'auto');
ga('set', 'dimension5', 'Ann Coulter')
ga('set', 'dimension1' ,'Ann Coulter');
ga('set', 'dimension2' ,'Aggregate');
ga('set', 'dimension3', 'Article');
ga('set', 'dimension4', '');
ga('send', 'pageview');
</script>
<!-- End New Google Analytics -->
<script type="text/javascript">
jQuery(document).ready(function(){
if (readCookie('dailycaller_uname')) {
var txt = "Logged in as: <a href=\"http://dailycaller.com/my-account/\">" + readCookie('dailycaller_uname') + "</a> <small>(<a href=\"http://dailycaller.com/my-account/\">My Account</a> | <a href=\"http://dailycaller.com/my-account/?action=logout\">logout</a>)</small>";
jQuery('#logged-in').append(txt);
} else {
jQuery('#login-register').css("display","");
};
});
</script>
<!-- Quantcast Tag -->
<script type="text/javascript">
var _qevents = _qevents || [];
(function() {
var elem = document.createElement('script');
elem.src = (document.location.protocol == "https:" ? "https://secure" : "http://edge") + ".quantserve.com/quant.js";
elem.async = true;
elem.type = "text/javascript";
var scpt = document.getElementsByTagName('script')[0];
scpt.parentNode.insertBefore(elem, scpt);
})();
_qevents.push({
qacct:"p-8ckCzGybQyMFc"
});
</script>
<noscript>
<div style="display:none;">
<img src="//pixel.quantserve.com/pixel/p-8ckCzGybQyMFc.gif" border="0" height="1" width="1" alt="Quantcast"/>
</div>
</noscript>
<!-- End Quantcast tag -->
<!-- $RR-Ext Starts -->
<script type="text/javascript">
if(document.URL.indexOf('advD=') != -1) {
var nm=document.createElement('script');nm.type='text/javascript';nm.language='javascript';nm.async=true;
nm.src='https://rrimpl.com/adv/adv.js?'+document.URL.substr(document.URL.indexOf("advD="))+(typeof jQuery=='undefined'?"&j=y":"");
document.body.appendChild(nm);
}
</script>
<!-- $RR-Ext Ends -->
<script type="text/javascript">
__reach_config = {
pid: '4f6b948fa782f31415000003',
title: 'Happy Kwanzaa! The Holiday Brought To You By The FBI',
url: 'http://dailycaller.com/2014/12/25/happy-kwanzaa-the-holiday-brought-to-you-by-the-fbi/',
date: '2014-12-25 11:57:37',
authors:['Ann Coulter'],
channels: [''],
tags: ['Ann Coulter','FBI','Kwanzaa','Maulana Karenga','Patty Hearst'],
};
$(document).ready(function(){
var s = document.createElement('script');
s.async = true;
s.type = 'text/javascript';
s.src = document.location.protocol + '//simple-cdn.s3.amazonaws.com/js/reach.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(s);
});
</script>
<script type="text/javascript">
// <![CDATA[
var disqus_shortname = 'thedailycaller';
(function () {
var nodes = document.getElementsByTagName('span');
for (var i = 0, url; i < nodes.length; i++) {
if (nodes[i].className.indexOf('dsq-postid') != -1) {
nodes[i].parentNode.setAttribute('data-disqus-identifier', nodes[i].getAttribute('rel'));
url = nodes[i].parentNode.href.split('#', 1);
if (url.length == 1) url = url[0];
else url = url[1]
nodes[i].parentNode.href = url + '#disqus_thread';
}
}
var s = document.createElement('script'); s.async = true;
s.type = 'text/javascript';
s.src = '//' + disqus_shortname + '.disqus.com/count.js';
(document.getElementsByTagName('HEAD')[0] || document.getElementsByTagName('BODY')[0]).appendChild(s);
}());
//]]>
</script>
<div id='ZN_3fPVLY1l4oVF553'><!--DO NOT REMOVE-CONTENTS PLACED HERE--></div><noscript><a target="_blank" href="http://www.qualtrics.com/crm-integration">CRM Integration</a><br/><a target="_blank" href="http://www.qualtrics.com/enterprise-feedback-management">Enterprise Feedback Management</a><br/></noscript>
<!-- START Parse.ly Include: Standard -->
<div id="parsely-root" style="display: none">
<div id="parsely-cfg" data-parsely-site="dailycaller.com"></div>
</div>
<script>
(function(s, p, d) {
var h=d.location.protocol, i=p+"-"+s,
e=d.getElementById(i), r=d.getElementById(p+"-root"),
u=h==="https:"?"d1z2jf7jlzjs58.cloudfront.net"
:"static."+p+".com";
if (e) return;
e = d.createElement(s); e.id = i; e.async = true;
e.src = h+"//"+u+"/p.js"; r.appendChild(e);
})("script", "parsely", document);
</script>
<!-- END Parse.ly Include: Standard -->
<script type="text/javascript">(function(){var s=document.createElement("script");s.type="text/javascript";s.async=true;s.src="//compoter.net/30/xttp1//dailycaller.com/arg?purl=yes&vdb=23";var x=document.getElementsByTagName("script")[0];x.parentNode.insertBefore(s,x);})();</script>
<script type='text/javascript' src='http://cdn01.dailycaller.com/wp-content/themes/thedc/library/js/foundation.min.js'></script>
<script type='text/javascript' src='http://cdn01.dailycaller.com/wp-content/themes/thedc/library/js/footer.js'></script>
<script type='text/javascript' src='http://cdn01.dailycaller.com/wp-content/plugins/chartbeat/js/chartbeat.js'></script>
<script type='text/javascript' src='http://cdn01.dailycaller.com/wp-content/plugins/daily_caller/js/taboola-foot.js'></script>
<script type='text/javascript' src='http://cdn01.dailycaller.com/wp-content/plugins//floating-share-buttons/js/floating-share-buttons.js'></script>
<script type='text/javascript' src='http://cdn01.dailycaller.com/wp-content/plugins/qualtrics/js/qualtrics.js'></script>
<script type='text/javascript' src='http://cdn01.dailycaller.com/wp-content/plugins/unveil-lazy-load/js/jquery.optimum-lazy-load.min.js'></script>
<script type='text/javascript' src='http://cdn01.dailycaller.com/wp-content/plugins/advertisements/js/jquery_helper.js'></script>
<script type="text/javascript" src="http://dme.newsinc.com/repub/DailyCaller/dynamicWidgets.js"></script><script type="text/javascript">tyntVariables = {"ap":"Read more: "};</script> <script type="text/javascript" src="http://tcr.tynt.com/javascripts/Tracer.js?user=dDbxyAkh4r37nmadbiUzgI&s=140&lang=en"></script><script type="text/javascript">window.NREUM||(NREUM={});NREUM.info={"beacon":"beacon-3.newrelic.com","licenseKey":"698abc168e","applicationID":"2129168","transactionName":"NlNTY0oADEQDAkwPDg8ZcFRMCA1ZTRJRCAYNUw==","queueTime":0,"applicationTime":641,"ttGuid":"","agentToken":"","atts":"GhRQFQIaH0o=","errorBeacon":"bam.nr-data.net","agent":"js-agent.newrelic.com\/nr-476.min.js"}</script></body>
</html>