forked from codelucas/newspaper
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdailycaller.com2.html
More file actions
1007 lines (978 loc) · 96.3 KB
/
Copy pathdailycaller.com2.html
File metadata and controls
1007 lines (978 loc) · 96.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<!--[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/27/jennifer-lawrence-made-an-appearance-at-the-louisville-kentucky-flop-fest-video/">
<meta name="twitter:card" content="summary">
<meta name="twitter:site" content="@dailycaller">
<meta name="twitter:site:id" content="39308549">
<meta name="twitter:title" content="Jennifer Lawrence Made An Appearance At The Louisville-Kentucky Flop Fest [VIDEO] Via @dailycaller">
<meta name="twitter:description" content="Total flop-fest">
<meta name="twitter:image:src" content="http://dailycaller.com/wp-content/uploads/2014/12/RTR4JDW4-e1419713347222.jpg">
<!-- 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>Jennifer Lawrence Shows Up At The Louisville-Kentucky Game | 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="The Louisville Cardinals hosted the Kentucky Wildcats on Saturday for one of the 2014 season's most highly anticipated college basketball games. Rick Pitino's 4th ranked Cardinals have had a great "/>
<meta property="og:title" content="Jennifer Lawrence Made An Appearance At The Louisville-Kentucky Flop Fest [VIDEO]"/>
<meta property="og:url" content="http://dailycaller.com/2014/12/27/jennifer-lawrence-made-an-appearance-at-the-louisville-kentucky-flop-fest-video/"/>
<meta property="og:type" content="article" />
<meta property="og:image" content="http://cdn01.dailycaller.com/wp-content/uploads/2014/12/RTR4JDW4-e1419713347222.jpg" />
<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 » Jennifer Lawrence Made An Appearance At The Louisville-Kentucky Flop Fest [VIDEO] Comments Feed" href="http://dailycaller.com/2014/12/27/jennifer-lawrence-made-an-appearance-at-the-louisville-kentucky-flop-fest-video/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/Sports/Sports_Articles',
[[728, 90], [900, 90], [970, 150], [970, 250], [320, 50], [970, 90]],
'div-gpt-ad-1372097714912-1'
)
.setTargeting( 'pos', ['top'] )
.addService( googletag.pubads() );
googletag
.defineSlot(
'/10519169/Sports/Sports_Articles',
[[300, 250], [300, 600], [300, 1050]],
'div-gpt-ad-1372097714912-2'
)
.setTargeting( 'pos', ['right1'] )
.addService( googletag.pubads() );
googletag
.defineSlot(
'/10519169/Sports/Sports_Articles',
[[300, 250], [300, 600]],
'div-gpt-ad-1372097714912-3'
)
.setTargeting( 'pos', ['right2'] )
.addService( googletag.pubads() );
googletag
.defineSlot(
'/10519169/Sports/Sports_Articles',
[[300, 250], [300, 600]],
'div-gpt-ad-1372097714912-4'
)
.setTargeting( 'pos', ['right3'] )
.addService( googletag.pubads() );
googletag
.defineSlot(
'/10519169/Sports/Sports_Articles',
[[728, 90], [900, 90]],
'div-gpt-ad-1372097714912-5'
)
.setTargeting( 'pos', ['bottom'] )
.addService( googletag.pubads() );
googletag.pubads().setTargeting('dccategories', ["DC Exclusives - Blurb"]);
googletag.pubads().setTargeting('dctags', ["College basketball","Jennifer Lawrence","John Calipari","Rick Pitino","University of Kentucky","University of Louisville"]);
googletag.pubads().setTargeting( 'pageid','4419915' );
googletag.pubads().setTargeting( 'url','http%3A%2F%2Fdailycaller.com%2F2014%2F12%2F27%2Fjennifer-lawrence-made-an-appearance-at-the-louisville-kentucky-flop-fest-video%2F' );
googletag.pubads().setTargeting( 'topic','sports' );
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='Browns Suspend Josh Gordon For Violating Team Rules… Again' href='http://dailycaller.com/2014/12/27/browns-suspend-josh-gordon-for-violating-team-rules-again/' />
<link rel='next' title='Who Got Fired On NFL’s ‘Black Monday’?' href='http://dailycaller.com/2014/12/29/its-nfl-black-monday-who-got-fired/' />
<link rel='shortlink' href='http://dailycaller.com/?p=4419915' />
<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="Sat, Dec 27 2014 21:44:39 +0000" />
<meta name="publish-date" content="Sat, Dec 27 2014 21:44:39 +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":"Jennifer Lawrence Made An Appearance At The Louisville-Kentucky Flop Fest [VIDEO]","link":"http:\/\/dailycaller.com\/2014\/12\/27\/jennifer-lawrence-made-an-appearance-at-the-louisville-kentucky-flop-fest-video\/","image_url":"http:\/\/dailycaller.com\/wp-content\/uploads\/2014\/12\/RTR4JDW4-220x120.jpg","type":"post","post_id":"4419915","pub_date":"2014-12-27T21:44:39Z","section":"DC Exclusives - Blurb","author":"Christian Datoc","tags":["college basketball","jennifer lawrence","john calipari","rick pitino","university of kentucky","university of louisville"]}' />
<!-- All in One SEO Pack 2.2.3 by Michael Torbert of Semper Fi Web Design[2027,2134] -->
<meta name="description" content="Total flop-fest" />
<meta name="keywords" content="college basketball,jennifer lawrence,john calipari,rick pitino,university of kentucky,university of louisville" />
<link rel="canonical" href="http://dailycaller.com/2014/12/27/jennifer-lawrence-made-an-appearance-at-the-louisville-kentucky-flop-fest-video/" />
<!-- /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-1372097714912-1', '9d843aa2024f3df686eb');
sbi_morpheus.register('div-gpt-ad-1372097714912-2', 'e1c37e3c4a72bf5982e1');
sbi_morpheus.register('div-gpt-ad-1372097714912-3', 'f4853f36665a46db7be0');
sbi_morpheus.register('div-gpt-ad-1372097714912-4', 'f4853f36665a46db7be0');
sbi_morpheus.register('div-gpt-ad-1372097714912-5', 'd4d29dff73ab63d4acd2');
sbi_morpheus.callOperator();
</script>
</head>
<body class="single single-post postid-4419915 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="current-post-ancestor current-post-parent 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="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="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="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="current-post-ancestor current-post-parent 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="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 Sports/Sports_Articles, Ad ID div-gpt-ad-1372097714912-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-1372097714912-1>
<script>
googletag.cmd.push( function() {
googletag.display( 'div-gpt-ad-1372097714912-1' );
});
</script>
</div><!-- #div-gpt-ad-1372097714912-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-4419915" class="post-4419915 post type-post status-publish format-standard hentry category-dcexclusives-blurb tag-college-basketball tag-jennifer-lawrence tag-john-calipari tag-rick-pitino tag-university-of-kentucky tag-university-of-louisville">
<div class="full-page-article left-col">
<div class="section">Sports</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='Dec 27, 2014; Louisville, KY, USA; Louisville Cardinals forward Montrezl Harrell (24) posts up against Kentucky Wildcats guard Aaron Harrison (2) during the first half at KFC Yum! Center. Mandatory Credit: Jamie Rhodes-USA TODAY Sports - RTR4JDW4' alt='Dec 27, 2014; Louisville, KY, USA; Louisville Cardinals forward Montrezl Harrell (24) posts up against Kentucky Wildcats guard Aaron Harrison (2) during the first half at KFC Yum! Center. Mandatory Credit: Jamie Rhodes-USA TODAY Sports - RTR4JDW4' src='http://cdn01.dailycaller.com/wp-content/uploads/2014/12/RTR4JDW4-e1419713347222.jpg' width='610' /><span class="image_caption"><span class="image_caption_toggle"> </span>Dec 27, 2014; Louisville, KY, USA; Louisville Cardinals forward Montrezl Harrell (24) posts up against Kentucky Wildcats guard Aaron Harrison (2) during the first half at KFC Yum! Center. Mandatory Credit: Jamie Rhodes-USA TODAY Sports - RTR4JDW4</span><span class="image_caption_toggle_off"> </span> </div>
<h1>Jennifer Lawrence Made An Appearance At The Louisville-Kentucky Flop Fest [VIDEO]</h1>
<div class="dateline">
4:44 PM 12/27/2014 </div>
<script type="text/javascript">
jQuery(document).ready( function() {
dc_setup_social_bar('http%3A%2F%2Fdailycaller.com%2F2014%2F12%2F27%2Fjennifer-lawrence-made-an-appearance-at-the-louisville-kentucky-flop-fest-video%2F', 'Jennifer+Lawrence+Made+An+Appearance+At+The+Louisville-Kentucky+Flop+Fest+%5BVIDEO%5D', '4419915');
});
</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"><div class="data"><div class="name" id="name">Christian Datoc</div><div class="authortitle">Sports Editor</div><ul class="author"><li><span class="icon-newspaper"></span><a href="http://dailycaller.com/author/christian-datoc/" target="_blank">See All Articles</a></li><li><span class="icon-envelope"></span><a href="mailto:christian@dailycaller.com" title="Email Christian Datoc" target="_blank">Send Email</a></li><li><span class="icon-feed2"></span><a href="http://dailycaller.com/author/christian-datoc/feed/" target="_blank">Subscribe to RSS</a></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/27/jennifer-lawrence-made-an-appearance-at-the-louisville-kentucky-flop-fest-video/" 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;">4419915</div><p>The Louisville Cardinals hosted the Kentucky Wildcats on Saturday for one of the 2014 season’s most highly anticipated college basketball games.</p>
<p>Rick Pitino’s 4th ranked Cardinals have had a great start to the season, but they were still huge underdogs against John Calipari’s unbeaten powerhouse. <a href="http://dailycaller.com/2014/12/22/kentucky-basketball-releases-eerily-haunting-carol-of-the-bells-christmas-greeting-video/"><strong>(RELATED: Kentucky Basketball’s Christmas Card Must Be Pretty Intimidating For Opposing Teams)</strong></a></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>Louisville trailed by 4 points at halftime, but they couldn’t close the gap thanks to plays like this.</p>
<p><strong>WATCH:</strong></p>
<p><iframe src="https://vine.co/v/OHQBTeUJ9jT/embed/simple" height="338" width="600" frameborder="0"></iframe></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>Slow it down one time.</p>
<p><iframe src="https://vine.co/v/OHx9erYItxp/embed/simple" height="338" width="600" frameborder="0"></iframe><script charset="utf-8" type="text/javascript" src="//platform.vine.co/static/scripts/embed.js" async=""></script></p>
<p>What a joke.</p>
<p>In games like these, I usually cheer for the underdog, but that flop had me wanting Kentucky to win by fifty. <a href="http://dailycaller.com/2014/12/01/this-brutal-flop-is-everything-thats-wrong-with-soccer-video/"><strong>(RELATED: Forget ISIS, China And Immigrants; Flopping Is Threatening To Destroy America)</strong></a></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>Like the rest of their games this season, the Wildcats eventually pulled away from their cross-state rival. UK won by a final score of 58-50.</p>
<p>On a side note, apparently Jennifer Lawrence is a Cardinals fan.</p>
<blockquote class="twitter-tweet" lang="en"><p>NEW: Jennifer Lawrence at the Louisville Cardinals basketball game today (Dec. 27) <a href="http://t.co/soxnfJGWwd">pic.twitter.com/soxnfJGWwd</a></p>
<p>— Jennifer Lawrence (@JenniferUpdates) <a href="https://twitter.com/JenniferUpdates/status/548950759539494913">December 27, 2014</a></p></blockquote>
<p><script async src="//platform.twitter.com/widgets.js" charset="utf-8"></script></p>
<blockquote class="twitter-tweet" data-partner="tweetdeck"><p>"May the odds be ever in Louisville's favor!" – Jennifer Lawrence <a href="http://t.co/rE6Li6QWGp">http://t.co/rE6Li6QWGp</a> <a href="http://t.co/zK8QMCzPDf">pic.twitter.com/zK8QMCzPDf</a></p>
<p>— Sporting News (@sportingnews) <a href="https://twitter.com/sportingnews/status/548938978020573185">December 27, 2014</a></p></blockquote>
<p><script async src="//platform.twitter.com/widgets.js" charset="utf-8"></script></p>
<p style="text-align: center;"><img class="aligncenter" alt="" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="http://stubbornthoughts.files.wordpress.com/2013/08/52377-jennifer-lawrence-i-love-you-g-5ftm.gif" width="500" height="281" /><noscript><img class="aligncenter" alt="" src="http://stubbornthoughts.files.wordpress.com/2013/08/52377-jennifer-lawrence-i-love-you-g-5ftm.gif" width="500" height="281" /></noscript></p>
<p style="text-align: left;">I love you too, J. Law.</p>
<p><a href="https://twitter.com/TocRadio"><em>Follow Datoc on Twitter</em></a></p>
<div class="post_tags">Tags: <a href='http://dailycaller.com/buzz/college-basketball/' title='College basketball Tag' class='college-basketball'>College basketball</a>, <a href='http://dailycaller.com/buzz/jennifer-lawrence/' title='Jennifer Lawrence Tag' class='jennifer-lawrence'>Jennifer Lawrence</a>, <a href='http://dailycaller.com/buzz/john-calipari/' title='John Calipari Tag' class='john-calipari'>John Calipari</a>, <a href='http://dailycaller.com/buzz/rick-pitino/' title='Rick Pitino Tag' class='rick-pitino'>Rick Pitino</a>, <a href='http://dailycaller.com/buzz/university-of-kentucky/' title='University of Kentucky Tag' class='university-of-kentucky'>University of Kentucky</a>, <a href='http://dailycaller.com/buzz/university-of-louisville/' title='University of Louisville Tag' class='university-of-louisville'>University of Louisville</a></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/27/jennifer-lawrence-made-an-appearance-at-the-louisville-kentucky-flop-fest-video/#respond" title="Comment on Jennifer Lawrence Made An Appearance At The Louisville-Kentucky Flop Fest [VIDEO]"><span class="dsq-postid" rel="4419915 http://dailycaller.com/?p=4419915"><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/27/browns-suspend-josh-gordon-for-violating-team-rules-again/" rel="prev"><span class="meta-nav">←</span> Browns Suspend Josh Gordon For Violating Team Rules… Again</a> </span>
<span class="nav-next alignright">
<a href="http://dailycaller.com/2014/12/29/its-nfl-black-monday-who-got-fired/" rel="next">Who Got Fired On NFL’s ‘Black Monday’? <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/27/jennifer-lawrence-made-an-appearance-at-the-louisville-kentucky-flop-fest-video/';
var disqus_identifier = '4419915 http://dailycaller.com/?p=4419915';
var disqus_container_id = 'disqus_thread';
var disqus_domain = 'disqus.com';
var disqus_shortname = 'thedailycaller';
var disqus_title = "Jennifer Lawrence Made An Appearance At The Louisville-Kentucky Flop Fest [VIDEO]";
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= 4ac3282d1b9a6a20a44e7ce73b75b48dd1540864 1420285684';
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\/27\/jennifer-lawrence-made-an-appearance-at-the-louisville-kentucky-flop-fest-video\/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: sports, sponsored: -->
<!-- Post ID , Account 10519169, Label Sports/Sports_Articles, Ad ID div-gpt-ad-1372097714912-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-1372097714912-2>
<script>
googletag.cmd.push( function() {
googletag.display( 'div-gpt-ad-1372097714912-2' );
});
</script>
</div><!-- #div-gpt-ad-1372097714912-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 Sports/Sports_Articles, Ad ID div-gpt-ad-1372097714912-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-1372097714912-3>
<script>
googletag.cmd.push( function() {
googletag.display( 'div-gpt-ad-1372097714912-3' );
});
</script>
</div><!-- #div-gpt-ad-1372097714912-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 box columns">
<h2>Popular Articles</h2> <div id="popular" class="widget">
<div class="buttons">
<div class="button-most-popular popbutton hilite"><a href="#">Popular</a></div>
<div class="button-most-emailed popbutton"><a href="#">Emailed</a></div>
</div>
<div id="popular" class="popular-box small-12 columns" data-vr-zone="Most Popular Box">
<div class="box-post" data-vr-contentbox="">
<div class="small-4 columns lr"><a href="http://dailycaller.com/2015/01/02/veteran-and-former-cop-sues-after-guns-confiscated-because-he-sought-treatment-for-insomnia/" title="Veteran And Former Cop Sues After Guns Confiscated Because He Sought Treatment For Insomnia"><img src="http://cdn01.dailycaller.com/wp-content/uploads/2014/05/2014-05-16T050353Z_1_CBREA4F0E2V00_RTROPTP_4_USA-SEPT11-MEMORIAL-e1400250343218-279x120.jpg" alt="Veteran And Former Cop Sues After Guns Confiscated Because He Sought Treatment For Insomnia" title="Veteran And Former Cop Sues After Guns Confiscated Because He Sought Treatment For Insomnia" border="0" /></a></div>
<h3 class="post small-8 columns lr"><a title="Veteran And Former Cop Sues After Guns Confiscated Because He Sought Treatment For Insomnia" href="http://dailycaller.com/2015/01/02/veteran-and-former-cop-sues-after-guns-confiscated-because-he-sought-treatment-for-insomnia/">Veteran And Former Cop Sues After Guns Confiscated Because He Sought Treatment For Insomnia</a></h3>
</div>
<div class="box-post" data-vr-contentbox="">
<div class="small-4 columns lr"><a href="http://dailycaller.com/2015/01/02/anti-police-protesters-release-list-of-demands/" title="Anti-Police Protesters Release List Of ‘Demands’"><img src="http://cdn01.dailycaller.com/wp-content/uploads/2014/12/2014-12-26T120555Z_1_LYNXMPEABP09N_RTROPTP_4_USA-POLICE-e1419602313606-269x120.jpg" alt="Anti-Police Protesters Release List Of ‘Demands’" title="Anti-Police Protesters Release List Of ‘Demands’" border="0" /></a></div>
<h3 class="post small-8 columns lr"><a title="Anti-Police Protesters Release List Of ‘Demands’" href="http://dailycaller.com/2015/01/02/anti-police-protesters-release-list-of-demands/">Anti-Police Protesters Release List Of ‘Demands’</a></h3>
</div>
<div class="box-post" data-vr-contentbox="">
<div class="small-4 columns lr"><a href="http://dailycaller.com/2015/01/02/obamas-dine-at-exclusive-hawaiian-restaurant-not-accessible-to-99-percent-of-the-population/" title="Obamas Dine At Exclusive Hawaiian Restaurant ‘Not Accessible To 99 Percent Of The Population’"><img src="http://cdn01.dailycaller.com/wp-content/uploads/2014/11/Obamadinner-282x120.jpg" alt="Obamas Dine At Exclusive Hawaiian Restaurant ‘Not Accessible To 99 Percent Of The Population’" title="Obamas Dine At Exclusive Hawaiian Restaurant ‘Not Accessible To 99 Percent Of The Population’" border="0" /></a></div>
<h3 class="post small-8 columns lr"><a title="Obamas Dine At Exclusive Hawaiian Restaurant ‘Not Accessible To 99 Percent Of The Population’" href="http://dailycaller.com/2015/01/02/obamas-dine-at-exclusive-hawaiian-restaurant-not-accessible-to-99-percent-of-the-population/">Obamas Dine At Exclusive Hawaiian Restaurant ‘Not Accessible To 99 Percent Of The Population’</a></h3>
</div>
<div class="box-post" data-vr-contentbox="">
<div class="small-4 columns lr"><a href="http://dailycaller.com/2013/01/09/the-ar-15-you-dont-need-one-and-they-are-too-dangerous-to-own/" title="The AR-15, you don’t need one and they are too dangerous to own"><img src="http://cdn01.dailycaller.com/wp-content/uploads/2013/01/AR-15-not-an-assault-rifle-e1359702636532-300x109.png" alt="The AR-15, you don’t need one and they are too dangerous to own" title="The AR-15, you don’t need one and they are too dangerous to own" border="0" /></a></div>
<h3 class="post small-8 columns lr"><a title="The AR-15, you don’t need one and they are too dangerous to own" href="http://dailycaller.com/2013/01/09/the-ar-15-you-dont-need-one-and-they-are-too-dangerous-to-own/">The AR-15, you don’t need one and they are too dangerous to own</a></h3>
</div>
<div class="box-post" data-vr-contentbox="">
<div class="small-4 columns lr"><a href="http://dailycaller.com/2014/12/30/obama-adviser-jonathan-gruber-in-2009-obamacare-will-not-be-affordable/" title="Obama Adviser Jonathan Gruber In 2009: Obamacare Will NOT Be Affordable"><img src="http://cdn01.dailycaller.com/wp-content/uploads/2014/12/gruber1-282x120.jpg" alt="Obama Adviser Jonathan Gruber In 2009: Obamacare Will NOT Be Affordable" title="Obama Adviser Jonathan Gruber In 2009: Obamacare Will NOT Be Affordable" border="0" /></a></div>
<h3 class="post small-8 columns lr"><a title="Obama Adviser Jonathan Gruber In 2009: Obamacare Will NOT Be Affordable" href="http://dailycaller.com/2014/12/30/obama-adviser-jonathan-gruber-in-2009-obamacare-will-not-be-affordable/">Obama Adviser Jonathan Gruber In 2009: Obamacare Will NOT Be Affordable</a></h3>
</div>
<div class="box-post" data-vr-contentbox="">
<div class="small-4 columns lr"><a href="http://dailycaller.com/2015/01/02/texas-looks-to-decriminalize-marijuana-sheriffs-say-no-chance/" title="Texas Looks To Decriminalize Marijuana, Sheriffs Say ‘No Chance’"><img src="http://cdn01.dailycaller.com/wp-content/uploads/2014/03/2014-03-24T185332Z_1_CBREA2N1GHB00_RTROPTP_4_USA-MARIJUANA-COLORADO-e1396461216675-282x120.jpg" alt="Texas Looks To Decriminalize Marijuana, Sheriffs Say ‘No Chance’" title="Texas Looks To Decriminalize Marijuana, Sheriffs Say ‘No Chance’" border="0" /></a></div>
<h3 class="post small-8 columns lr"><a title="Texas Looks To Decriminalize Marijuana, Sheriffs Say ‘No Chance’" href="http://dailycaller.com/2015/01/02/texas-looks-to-decriminalize-marijuana-sheriffs-say-no-chance/">Texas Looks To Decriminalize Marijuana, Sheriffs Say ‘No Chance’</a></h3>
</div>
<div class="box-post" data-vr-contentbox="">
<div class="small-4 columns lr"><a href="http://dailycaller.com/2015/01/02/poll-60-percent-of-gop-voters-want-john-boehner-replaced-as-speaker/" title="Poll: 60 Percent Of GOP Voters Want John Boehner Replaced As Speaker"><img src="http://cdn01.dailycaller.com/wp-content/uploads/2014/11/2014-11-21T150220Z_1_LYNXNPEAAK0RV_RTROPTP_4_USA-IMMIGRATION-BOEHNER-e1420214086493-279x120.jpg" alt="Poll: 60 Percent Of GOP Voters Want John Boehner Replaced As Speaker" title="Poll: 60 Percent Of GOP Voters Want John Boehner Replaced As Speaker" border="0" /></a></div>
<h3 class="post small-8 columns lr"><a title="Poll: 60 Percent Of GOP Voters Want John Boehner Replaced As Speaker" href="http://dailycaller.com/2015/01/02/poll-60-percent-of-gop-voters-want-john-boehner-replaced-as-speaker/">Poll: 60 Percent Of GOP Voters Want John Boehner Replaced As Speaker</a></h3>
</div>
<div class="box-post" data-vr-contentbox="">
<div class="small-4 columns lr"><a href="http://dailycaller.com/2015/01/02/anderson-cooper-cant-hide-contempt-for-piers-morgan/" title="Anderson Cooper Can’t Hide Contempt For Piers Morgan"><img src="http://cdn01.dailycaller.com/wp-content/uploads/2015/01/1420166690-e1420216275628-242x120.jpg" alt="Anderson Cooper Can’t Hide Contempt For Piers Morgan" title="Anderson Cooper Can’t Hide Contempt For Piers Morgan" border="0" /></a></div>
<h3 class="post small-8 columns lr"><a title="Anderson Cooper Can’t Hide Contempt For Piers Morgan" href="http://dailycaller.com/2015/01/02/anderson-cooper-cant-hide-contempt-for-piers-morgan/">Anderson Cooper Can’t Hide Contempt For Piers Morgan</a></h3>
</div>
<div class="box-post" data-vr-contentbox="">
<div class="small-4 columns lr"><a href="http://dailycaller.com/2015/01/02/oh-isnt-that-cute-its-sarah-palins-son-standing-on-the-family-dog/" title="Oh Isn’t That Cute? It’s Sarah Palin’s Son Standing On The Family Dog"><img src="http://cdn01.dailycaller.com/wp-content/uploads/2014/08/Sarah-Palin-Getty-Images-John-Moore-e1413997757669-278x120.jpg" alt="Oh Isn’t That Cute? It’s Sarah Palin’s Son Standing On The Family Dog" title="Oh Isn’t That Cute? It’s Sarah Palin’s Son Standing On The Family Dog" border="0" /></a></div>
<h3 class="post small-8 columns lr"><a title="Oh Isn’t That Cute? It’s Sarah Palin’s Son Standing On The Family Dog" href="http://dailycaller.com/2015/01/02/oh-isnt-that-cute-its-sarah-palins-son-standing-on-the-family-dog/">Oh Isn’t That Cute? It’s Sarah Palin’s Son Standing On The Family Dog</a></h3>
</div>
<div class="box-post" data-vr-contentbox="">
<div class="small-4 columns lr"><a href="http://dailycaller.com/2015/01/02/wait-what-feminists-are-angry-oregon-players-called-out-an-accused-rapist-video/" title="Wait, What? Feminists Are Angry Oregon Players Called Out An Accused Rapist [VIDEO]"><img src="http://cdn01.dailycaller.com/wp-content/uploads/2015/01/Oregon-Ducks-e1420226208865-279x120.jpg" alt="Wait, What? Feminists Are Angry Oregon Players Called Out An Accused Rapist [VIDEO]" title="Wait, What? Feminists Are Angry Oregon Players Called Out An Accused Rapist [VIDEO]" border="0" /></a></div>
<h3 class="post small-8 columns lr"><a title="Wait, What? Feminists Are Angry Oregon Players Called Out An Accused Rapist [VIDEO]" href="http://dailycaller.com/2015/01/02/wait-what-feminists-are-angry-oregon-players-called-out-an-accused-rapist-video/">Wait, What? Feminists Are Angry Oregon Players Called Out An Accused Rapist [VIDEO]</a></h3>
</div>
</div>
<div id="most-emailed" class="popular-box small-12 columns" style="display:none;" data-vr-zone="Most Shared Box">
<div class="box-post" data-vr-contentbox="">
<div class="small-4 columns lr"><a href="http://dailycaller.com/2015/01/02/veteran-and-former-cop-sues-after-guns-confiscated-because-he-sought-treatment-for-insomnia/" title="Veteran And Former Cop Sues After Guns Confiscated Because He Sought Treatment For Insomnia"><img src="http://cdn01.dailycaller.com/wp-content/uploads/2014/05/2014-05-16T050353Z_1_CBREA4F0E2V00_RTROPTP_4_USA-SEPT11-MEMORIAL-e1400250343218-279x120.jpg" alt="Veteran And Former Cop Sues After Guns Confiscated Because He Sought Treatment For Insomnia" title="Veteran And Former Cop Sues After Guns Confiscated Because He Sought Treatment For Insomnia" /></a></div>
<h3 class="post small-8 columns lr"><a title="Veteran And Former Cop Sues After Guns Confiscated Because He Sought Treatment For Insomnia" href="http://dailycaller.com/2015/01/02/veteran-and-former-cop-sues-after-guns-confiscated-because-he-sought-treatment-for-insomnia/">Veteran And Former Cop Sues After Guns Confiscated Because He Sought Treatment For Insomnia</a></h3>
</div>
<div class="box-post" data-vr-contentbox="">
<div class="small-4 columns lr"><a href="http://dailycaller.com/2014/12/31/america-now-has-two-more-right-to-work-counties/" title="America Now Has Two More Right-To-Work Counties"><img src="http://cdn01.dailycaller.com/wp-content/uploads/2014/02/Right-to-Work-630x459-e1392679828450-279x120.jpg" alt="America Now Has Two More Right-To-Work Counties" title="America Now Has Two More Right-To-Work Counties" /></a></div>
<h3 class="post small-8 columns lr"><a title="America Now Has Two More Right-To-Work Counties" href="http://dailycaller.com/2014/12/31/america-now-has-two-more-right-to-work-counties/">America Now Has Two More Right-To-Work Counties</a></h3>
</div>
<div class="box-post" data-vr-contentbox="">
<div class="small-4 columns lr"><a href="http://dailycaller.com/2015/01/01/eureka-someone-created-a-poop-map-of-san-francisco-to-track-the-homeless/" title="EUREKA!: Someone Created A Poop Map Of San Francisco To Track The Homeless"><img src="http://cdn01.dailycaller.com/wp-content/uploads/2015/01/photo-collage-Getty-Images-282x120.jpg" alt="EUREKA!: Someone Created A Poop Map Of San Francisco To Track The Homeless" title="EUREKA!: Someone Created A Poop Map Of San Francisco To Track The Homeless" /></a></div>
<h3 class="post small-8 columns lr"><a title="EUREKA!: Someone Created A Poop Map Of San Francisco To Track The Homeless" href="http://dailycaller.com/2015/01/01/eureka-someone-created-a-poop-map-of-san-francisco-to-track-the-homeless/">EUREKA!: Someone Created A Poop Map Of San Francisco To Track The Homeless</a></h3>
</div>
<div class="box-post" data-vr-contentbox="">
<div class="small-4 columns lr"><a href="http://dailycaller.com/2015/01/02/obamas-dine-at-exclusive-hawaiian-restaurant-not-accessible-to-99-percent-of-the-population/" title="Obamas Dine At Exclusive Hawaiian Restaurant ‘Not Accessible To 99 Percent Of The Population’"><img src="http://cdn01.dailycaller.com/wp-content/uploads/2014/11/Obamadinner-282x120.jpg" alt="Obamas Dine At Exclusive Hawaiian Restaurant ‘Not Accessible To 99 Percent Of The Population’" title="Obamas Dine At Exclusive Hawaiian Restaurant ‘Not Accessible To 99 Percent Of The Population’" /></a></div>
<h3 class="post small-8 columns lr"><a title="Obamas Dine At Exclusive Hawaiian Restaurant ‘Not Accessible To 99 Percent Of The Population’" href="http://dailycaller.com/2015/01/02/obamas-dine-at-exclusive-hawaiian-restaurant-not-accessible-to-99-percent-of-the-population/">Obamas Dine At Exclusive Hawaiian Restaurant ‘Not Accessible To 99 Percent Of The Population’</a></h3>
</div>
<div class="box-post" data-vr-contentbox="">
<div class="small-4 columns lr"><a href="http://dailycaller.com/2011/01/13/people-cant-be-both-evil-and-insane/" title="People can’t be both evil and insane"><img src="http://cdn01.dailycaller.com/wp-content/themes/thedc/images/the-dc-wide.png" alt="People can’t be both evil and insane" title="People can’t be both evil and insane" /></a></div>
<h3 class="post small-8 columns lr"><a title="People can’t be both evil and insane" href="http://dailycaller.com/2011/01/13/people-cant-be-both-evil-and-insane/">People can’t be both evil and insane</a></h3>
</div>
<div class="box-post" data-vr-contentbox="">
<div class="small-4 columns lr"><a href="http://dailycaller.com/2015/01/02/horror-isis-fighters-have-reprotedly-contracted-ebola/" title="HORROR: ISIS Fighters Have Reportedly Contracted Ebola"><img src="http://cdn01.dailycaller.com/wp-content/uploads/2014/10/isis-reuters-e1413997603420-282x99.jpg" alt="HORROR: ISIS Fighters Have Reportedly Contracted Ebola" title="HORROR: ISIS Fighters Have Reportedly Contracted Ebola" /></a></div>
<h3 class="post small-8 columns lr"><a title="HORROR: ISIS Fighters Have Reportedly Contracted Ebola" href="http://dailycaller.com/2015/01/02/horror-isis-fighters-have-reprotedly-contracted-ebola/">HORROR: ISIS Fighters Have Reportedly Contracted Ebola</a></h3>
</div>
<div class="box-post" data-vr-contentbox="">
<div class="small-4 columns lr"><a href="http://dailycaller.com/2015/01/01/baylor-kicker-chris-callahan-destroyed-after-blocked-field-goal-in-cotton-bowl-loss-video/" title="Baylor Kicker Chris Callahan Destroyed After Blocked Field Goal In Cotton Bowl Loss [VIDEO]"><img src="http://cdn01.dailycaller.com/wp-content/uploads/2015/01/RTR4JUOG-e1420153724552-279x120.jpg" alt="Baylor Kicker Chris Callahan Destroyed After Blocked Field Goal In Cotton Bowl Loss [VIDEO]" title="Baylor Kicker Chris Callahan Destroyed After Blocked Field Goal In Cotton Bowl Loss [VIDEO]" /></a></div>
<h3 class="post small-8 columns lr"><a title="Baylor Kicker Chris Callahan Destroyed After Blocked Field Goal In Cotton Bowl Loss [VIDEO]" href="http://dailycaller.com/2015/01/01/baylor-kicker-chris-callahan-destroyed-after-blocked-field-goal-in-cotton-bowl-loss-video/">Baylor Kicker Chris Callahan Destroyed After Blocked Field Goal In Cotton Bowl Loss [VIDEO]</a></h3>
</div>
<div class="box-post" data-vr-contentbox="">
<div class="small-4 columns lr"><a href="http://dailycaller.com/2014/12/30/patient-centered-medical-homes-and-the-hidden-fundamental-transformation-of-obamacare/" title="Patient Centered Medical Homes And The Hidden ‘Fundamental Transformation’ Of Obamacare"><img src="http://cdn01.dailycaller.com/wp-content/uploads/2014/03/obamalatino-282x120.jpg" alt="Patient Centered Medical Homes And The Hidden ‘Fundamental Transformation’ Of Obamacare" title="Patient Centered Medical Homes And The Hidden ‘Fundamental Transformation’ Of Obamacare" /></a></div>
<h3 class="post small-8 columns lr"><a title="Patient Centered Medical Homes And The Hidden ‘Fundamental Transformation’ Of Obamacare" href="http://dailycaller.com/2014/12/30/patient-centered-medical-homes-and-the-hidden-fundamental-transformation-of-obamacare/">Patient Centered Medical Homes And The Hidden ‘Fundamental Transformation’ Of Obamacare</a></h3>
</div>
<div class="box-post" data-vr-contentbox="">
<div class="small-4 columns lr"><a href="http://dailycaller.com/2014/12/31/did-brandeis-student-with-no-sympathy-for-dead-cops-learn-at-anita-hills-knee/" title="Did Brandeis Student With ‘No Sympathy’ For Dead Cops Learn At Anita Hill’s Knee?"><img src="http://cdn01.dailycaller.com/wp-content/uploads/2014/12/Anita-Hill-YouTube-screenshot-Film-Festivals-and-Indie-Films-282x120.jpg" alt="Did Brandeis Student With ‘No Sympathy’ For Dead Cops Learn At Anita Hill’s Knee?" title="Did Brandeis Student With ‘No Sympathy’ For Dead Cops Learn At Anita Hill’s Knee?" /></a></div>
<h3 class="post small-8 columns lr"><a title="Did Brandeis Student With ‘No Sympathy’ For Dead Cops Learn At Anita Hill’s Knee?" href="http://dailycaller.com/2014/12/31/did-brandeis-student-with-no-sympathy-for-dead-cops-learn-at-anita-hills-knee/">Did Brandeis Student With ‘No Sympathy’ For Dead Cops Learn At Anita Hill’s Knee?</a></h3>
</div>
<div class="box-post" data-vr-contentbox="">
<div class="small-4 columns lr"><a href="http://dailycaller.com/2015/01/02/steve-scalise-should-resign-right-after-obama-does/" title="Steve Scalise Should Resign — Right After Obama Does"><img src="http://cdn01.dailycaller.com/wp-content/uploads/2011/10/d9f87facfe5048738a0955b2cde17530-e1375392489939-300x128.jpg" alt="Steve Scalise Should Resign — Right After Obama Does" title="Steve Scalise Should Resign — Right After Obama Does" /></a></div>
<h3 class="post small-8 columns lr"><a title="Steve Scalise Should Resign — Right After Obama Does" href="http://dailycaller.com/2015/01/02/steve-scalise-should-resign-right-after-obama-does/">Steve Scalise Should Resign — Right After Obama Does</a></h3>
</div>
</div>
</div>
</div>
<div class="small-12 columns box"><h2>Slideshows</h2>
<div class="widget contentbysection Slideshow">
<div class="box-post pic">
<a class="lr" href="http://dailycaller.com/2014/12/30/these-women-are-ending-2014-with-a-champagne-facial-slideshow/" title="These Women Are Ending 2014 With A Champagne Facial [SLIDESHOW]"><img src="http://cdn01.dailycaller.com/wp-content/uploads/2014/12/facial13-e1419905921856.jpg" alt="These Women Are Ending 2014 With A Champagne Facial [SLIDESHOW]" /></a>
<div class="lr"><h3 class="post"><a title="These Women Are Ending 2014 With A Champagne Facial [SLIDESHOW]" href="http://dailycaller.com/2014/12/30/these-women-are-ending-2014-with-a-champagne-facial-slideshow/">These Women Are Ending 2014 With A Champagne Facial [SLIDESHOW]</a></h3>
<div class="date">10:15 PM 12/30/2014</div></div>
</div>
<div class="box-post pic">
<a class="lr" href="http://dailycaller.com/2014/12/30/hard-evidence-these-were-the-hottest-women-on-the-internet-this-year-slideshow/" title="Hard Evidence: These Were THE HOTTEST Women On The Internet This Year [SLIDESHOW]"><img src="http://cdn01.dailycaller.com/wp-content/uploads/2014/12/irina-shayk1-e1418851397849.jpg" alt="Hard Evidence: These Were THE HOTTEST Women On The Internet This Year [SLIDESHOW]" /></a>
<div class="lr"><h3 class="post"><a title="Hard Evidence: These Were THE HOTTEST Women On The Internet This Year [SLIDESHOW]" href="http://dailycaller.com/2014/12/30/hard-evidence-these-were-the-hottest-women-on-the-internet-this-year-slideshow/">Hard Evidence: These Were THE HOTTEST Women On The Internet This Year [SLIDESHOW]</a></h3>
<div class="date">1:23 PM 12/30/2014</div></div>
</div>
<div class="box-post pic">
<a class="lr" href="http://dailycaller.com/2014/12/28/you-dog-these-pooches-love-their-gorgeous-owners-slideshow/" title="You Dog! These Pooches Love Their Gorgeous Owners [SLIDESHOW]"><img src="http://cdn01.dailycaller.com/wp-content/uploads/2014/10/via-PacificCoastNews.com_1-e1414677937257.jpg" alt="You Dog! These Pooches Love Their Gorgeous Owners [SLIDESHOW]" /></a>
<div class="lr"><h3 class="post"><a title="You Dog! These Pooches Love Their Gorgeous Owners [SLIDESHOW]" href="http://dailycaller.com/2014/12/28/you-dog-these-pooches-love-their-gorgeous-owners-slideshow/">You Dog! These Pooches Love Their Gorgeous Owners [SLIDESHOW]</a></h3>
<div class="date">6:57 PM 12/28/2014</div></div>
</div>
<div class="box-post pic">
<a class="lr" href="http://dailycaller.com/2014/12/24/americas-best-leading-ladies-come-from-the-golden-era-slideshow/" title="America’s Best Leading Ladies Come From The Golden Era [SLIDESHOW]"><img src="http://cdn01.dailycaller.com/wp-content/uploads/2014/10/Rita-Hayworth-Flickr-Creative-Commons-e1414695306295.jpg" alt="America’s Best Leading Ladies Come From The Golden Era [SLIDESHOW]" /></a>
<div class="lr"><h3 class="post"><a title="America’s Best Leading Ladies Come From The Golden Era [SLIDESHOW]" href="http://dailycaller.com/2014/12/24/americas-best-leading-ladies-come-from-the-golden-era-slideshow/">America’s Best Leading Ladies Come From The Golden Era [SLIDESHOW]</a></h3>
<div class="date">10:55 PM 12/24/2014</div></div>
</div>
<div class="box-post pic">
<a class="lr" href="http://dailycaller.com/2014/12/22/here-are-your-twelve-babes-of-christmas-slideshow/" title="Here Are Your Twelve Babes Of Christmas [SLIDESHOW]"><img src="http://cdn01.dailycaller.com/wp-content/uploads/2014/12/irina-shayk-cover-e1419301853149.jpg" alt="Here Are Your Twelve Babes Of Christmas [SLIDESHOW]" /></a>
<div class="lr"><h3 class="post"><a title="Here Are Your Twelve Babes Of Christmas [SLIDESHOW]" href="http://dailycaller.com/2014/12/22/here-are-your-twelve-babes-of-christmas-slideshow/">Here Are Your Twelve Babes Of Christmas [SLIDESHOW]</a></h3>
<div class="date">9:36 PM 12/22/2014</div></div>
</div>
<div class="box-post pic">
<a class="lr" href="http://dailycaller.com/2014/12/19/these-hot-photos-are-exactly-why-kate-upton-was-voted-sexiest-woman-alive-slideshow/" title="These Hot Photos Are Exactly Why Kate Upton Was Voted ‘Sexiest Woman Alive’ [SLIDESHOW]"><img src="http://cdn01.dailycaller.com/wp-content/uploads/2014/04/kate-upton-gq-outake-photos-3307-e1404241047584.jpg" alt="These Hot Photos Are Exactly Why Kate Upton Was Voted ‘Sexiest Woman Alive’ [SLIDESHOW]" /></a>
<div class="lr"><h3 class="post"><a title="These Hot Photos Are Exactly Why Kate Upton Was Voted ‘Sexiest Woman Alive’ [SLIDESHOW]" href="http://dailycaller.com/2014/12/19/these-hot-photos-are-exactly-why-kate-upton-was-voted-sexiest-woman-alive-slideshow/">These Hot Photos Are Exactly Why Kate Upton Was Voted ‘Sexiest Woman Alive’ [SLIDESHOW]</a></h3>
<div class="date">9:30 PM 12/19/2014</div></div>
</div>
<div class="box-post pic">
<a class="lr" href="http://dailycaller.com/2014/12/15/dont-be-a-grinch-here-are-ten-swimsuit-models-to-cheer-you-up-this-christmas-slideshow/" title="Don’t Be A Grinch, Here Are 10 Swimsuit Models To Cheer You Up This Christmas [SLIDESHOW]"><img src="http://cdn01.dailycaller.com/wp-content/uploads/2014/12/kate-upton-sports-illustrated-outtakes-e1418144915601.jpg" alt="Don’t Be A Grinch, Here Are 10 Swimsuit Models To Cheer You Up This Christmas [SLIDESHOW]" /></a>
<div class="lr"><h3 class="post"><a title="Don’t Be A Grinch, Here Are 10 Swimsuit Models To Cheer You Up This Christmas [SLIDESHOW]" href="http://dailycaller.com/2014/12/15/dont-be-a-grinch-here-are-ten-swimsuit-models-to-cheer-you-up-this-christmas-slideshow/">Don’t Be A Grinch, Here Are 10 Swimsuit Models To Cheer You Up This Christmas [SLIDESHOW]</a></h3>
<div class="date">10:46 PM 12/15/2014</div></div>
</div>
<div class="box-post pic">
<a class="lr" href="http://dailycaller.com/2014/12/11/the-victorias-secret-after-party-was-apparently-themed-wear-as-little-as-possible-slideshow/" title="The Victoria’s Secret After Party Was Apparently Themed ‘Wear As Little As Possible’ [SLIDESHOW]"><img src="http://cdn01.dailycaller.com/wp-content/uploads/2014/12/459870742-e1418245389954.jpg" alt="The Victoria’s Secret After Party Was Apparently Themed ‘Wear As Little As Possible’ [SLIDESHOW]" /></a>
<div class="lr"><h3 class="post"><a title="The Victoria’s Secret After Party Was Apparently Themed ‘Wear As Little As Possible’ [SLIDESHOW]" href="http://dailycaller.com/2014/12/11/the-victorias-secret-after-party-was-apparently-themed-wear-as-little-as-possible-slideshow/">The Victoria’s Secret After Party Was Apparently Themed ‘Wear As Little As Possible’ [SLIDESHOW]</a></h3>
<div class="date">12:37 PM 12/11/2014</div></div>
</div>
<div class="box-post pic">
<a class="lr" href="http://dailycaller.com/2014/12/07/exclusive-preview-of-the-dncs-2014-election-autopsy-slideshow/" title="Exclusive Preview Of The DNC’s 2014 Election Autopsy [SLIDESHOW]"><img src="http://cdn01.dailycaller.com/wp-content/uploads/2014/12/barack-obama-wasserman-schultz-reuters-e1417727579203.jpg" alt="Exclusive Preview Of The DNC’s 2014 Election Autopsy [SLIDESHOW]" /></a>
<div class="lr"><h3 class="post"><a title="Exclusive Preview Of The DNC’s 2014 Election Autopsy [SLIDESHOW]" href="http://dailycaller.com/2014/12/07/exclusive-preview-of-the-dncs-2014-election-autopsy-slideshow/">Exclusive Preview Of The DNC’s 2014 Election Autopsy [SLIDESHOW]</a></h3>
<div class="date">10:56 PM 12/07/2014</div></div>
</div>
<div class="box-post pic">
<a class="lr" href="http://dailycaller.com/2014/12/07/you-wont-believe-what-these-victorias-secret-models-are-wearing-slideshows/" title="You Won’t Believe What These Victoria’s Secret Models Are Wearing [SLIDESHOWS]"><img src="http://cdn01.dailycaller.com/wp-content/uploads/2014/12/459853378-e1418005564409.jpg" alt="You Won’t Believe What These Victoria’s Secret Models Are Wearing [SLIDESHOWS]" /></a>
<div class="lr"><h3 class="post"><a title="You Won’t Believe What These Victoria’s Secret Models Are Wearing [SLIDESHOWS]" href="http://dailycaller.com/2014/12/07/you-wont-believe-what-these-victorias-secret-models-are-wearing-slideshows/">You Won’t Believe What These Victoria’s Secret Models Are Wearing [SLIDESHOWS]</a></h3>
<div class="date">9:58 PM 12/07/2014</div></div>
</div>
</div>
</div><!-- Post ID , Account 10519169, Label Sports/Sports_Articles, Ad ID div-gpt-ad-1372097714912-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-1372097714912-4>
<script>
googletag.cmd.push( function() {
googletag.display( 'div-gpt-ad-1372097714912-4' );
});
</script>
</div><!-- #div-gpt-ad-1372097714912-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 Sports/Sports_Articles, Ad ID div-gpt-ad-1372097714912-5, Adpos bottom, Ad Array [728, 90], [900, 90], Ad Slot 5 -->
<div class="ad_container small-12 columns box">
<div id=div-gpt-ad-1372097714912-5>
<script>
googletag.cmd.push( function() {
googletag.display( 'div-gpt-ad-1372097714912-5' );
});
</script>
</div><!-- #div-gpt-ad-1372097714912-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 current-post-ancestor current-menu-parent current-post-parent 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 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 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: "video", id: "4419915"});
_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 = 'Video';
_sf_async_config.authors = 'Christian Datoc';
/** 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', 'Video')
ga('set', 'dimension1' ,'Christian Datoc');
ga('set', 'dimension2' ,'DC Exclusives - Blurb');
ga('set', 'dimension3', 'Video');
ga('set', 'dimension4', 'TheDC');
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: 'Jennifer Lawrence Made An Appearance At The Louisville-Kentucky Flop Fest [VIDEO]',
url: 'http://dailycaller.com/2014/12/27/jennifer-lawrence-made-an-appearance-at-the-louisville-kentucky-flop-fest-video/',
date: '2014-12-27 16:44:39',
authors:['Christian Datoc'],
channels: [''],
tags: ['College basketball','Jennifer Lawrence','John Calipari','Rick Pitino','University of Kentucky','University of Louisville'],
};
$(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>