forked from codelucas/newspaper
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhuffingtonpost.com1.html
More file actions
2637 lines (2416 loc) · 186 KB
/
Copy pathhuffingtonpost.com1.html
File metadata and controls
2637 lines (2416 loc) · 186 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>
<!-- Mobile redirect: 80 -->
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8 ie7"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9 ie8"> <![endif]-->
<!--[if IE 9]> <html lang="en" class="no-js modern ie9"> <![endif]-->
<!--[if gt IE 9]><!--> <html lang="en" class="no-js modern"> <!--<![endif]-->
<head>
<title>Jamie Dimon Says Banks Are Under Assault As He Announces $4.9 Billion Profit</title>
<meta http-equiv='Content-Type' content='text/html; charset=utf-8' />
<meta http-equiv='X-UA-Compatible' content='IE=Edge,chrome=1' />
<meta name="keywords" content="jamie, dimon, says, banks, are, under, assault, as, he, announces, $4.9, billion, profit, business"/>
<meta name="description" content="We should all do so well while under assault. ... "/>
<meta name="category" content="Business" />
<meta http-equiv="Content-Language" content="en_US" />
<meta name="robots" content="noodp,noydir" />
<meta property="twitter:card" value="summary_large_image"/>
<meta property="twitter:site" value="@HuffPostBiz"/>
<meta property="fb:app_id" content="46744042133"/>
<meta property="og:site_name" content="The Huffington Post"/>
<meta property="og:title" content="Jamie Dimon Says Banks Are Under Assault As He Announces $4.9 Billion Profit"/>
<meta property="og:type" content="article"/>
<meta property="og:url" content="http://www.huffingtonpost.com/2015/01/14/jamie-dimon-banks-assault_n_6470358.html"/>
<meta property="og:image" content="http://i.huffpost.com/gen/2491664/thumbs/o-JAMIE-DIMON-facebook.jpg" />
<meta property="og:description" content="We should all do so well while under assault. ... "/>
<meta property="og:locale" content="en_US"/>
<meta name="sailthru.date" content="Wed, 14 Jan 2015 09:42:15 -0500">
<meta name="sailthru.expire_date" content="Thu, 15 Jan 2015 09:42:15 -0500">
<meta name="sailthru.image.thumb" content="http://i.huffpost.com/gen/2491664/thumbs/s-JAMIE-DIMON-small.jpg">
<meta name="sailthru.tags" content="JP Morgan Chase,Jamie Dimon,dodd-frank,Financial Regulation,Financial Reform,jamie dimon banks assault,jamie dimon regulation,jamie dimon whine,JPMorgan Chase,jpmorgan,JP Morgan">
<meta property="article:publisher" content="https://www.facebook.com/HuffPostBusiness"/>
<meta property="article:section" content="Business"/>
<link rel="image_src" href="http://i.huffpost.com/gen/2491664/thumbs/s-JAMIE-DIMON-large.jpg" />
<meta name="image" content="http://i.huffpost.com/gen/2491664/thumbs/s-JAMIE-DIMON-small.jpg" />
<meta name="thumbnail" content="http://i.huffpost.com/gen/2491664/thumbs/o-JAMIE-DIMON-facebook.jpg" />
<meta name="og:see_also" content="http://www.huffingtonpost.com/2015/01/14/most-popular-cuisine-state_n_6457252.html" />
<meta name="og:see_also" content="http://www.huffingtonpost.com/2015/01/13/chipotle-pork_n_6466350.html" />
<meta name="og:see_also" content="http://www.huffingtonpost.com/2015/01/13/breastaurants-growth_n_6443274.html" />
<link rel="shortcut icon" href="/favicon.ico">
<link rel="alternate" href="android-app://com.huffingtonpost.android/http/www.huffingtonpost.com/2015/01/14/jamie-dimon-banks-assault_n_6470358.html"/>
<link rel="alternate" href="ios-app://306621789/huffpostnews/www.huffingtonpost.com/2015/01/14/jamie-dimon-banks-assault_n_6470358.html"/>
<link rel="stylesheet" href="http://s0.huffpost.com/assets/css.php?v=1421170046&f=phoenix%2Fapp.css" type="text/css">
<link rel="stylesheet" href="http://s0.huffpost.com/assets/css.php?v=1421170046&f=phoenix%2Fcore.css%2Cphoenix%2Fpageheader.css%2Cphoenix%2Frightrail.css%2Cphoenix%2Fauthor_article.css%2Cphoenix%2Fted.css%2Cphoenix%2Fcolorbox.css%2Cphoenix%2Femail_form.css%2Cphoenix%2Fslideshow%2Fflexslider.css%2Cphoenix%2Fslideshow%2Fstyles.css" type="text/css">
<link rel="stylesheet" href="http://s1.huffpost.com/assets/css.php?v=1421170046&f=liveblog.css%2Cbasic.css%2Csailthru_concierge.css%2Crecipe_gadget.css%2Chp_modules%2Fmodule.sponsor-widgets.css%2Chp_modules%2Fmodule.apps_feeds.css%2C_slideshows%2Finline.css%2C_slideshows%2Fmodules%2Finline.css%2C_slideshows%2Fmodules%2Fparticipation.css%2C_slideshows%2Fmodules%2Fparticipation_new.css%2Ccommercial.css%2Cadd%2Finner.css%2Cemail_share.css%2Cbuttons.css" type="text/css">
<link rel="stylesheet" href="http://s1.huffpost.com/assets/css.php?v=1421170046&f=" type="text/css">
<link rel="stylesheet" href="http://s1.huffpost.com/assets/css.php?v=1421170046&f=phoenix%2Fverticals%2Fbusiness.css%2Cphoenix%2Fverticals%2Fpolitics.css%2Cphoenix%2Fverticals%2F.css%2Cphoenix%2Fverticals%2Fworld.css%2Cphoenix%2Fverticals%2Fmedia.css%2Cphoenix%2Fverticals%2Fgreen.css%2Cphoenix%2Fverticals%2Fsports.css%2Cphoenix%2Fverticals%2Farts.css%2Cphoenix%2Fverticals%2Fscience.css" type="text/css">
<link rel="canonical" href="http://www.huffingtonpost.com/2015/01/14/jamie-dimon-banks-assault_n_6470358.html">
<!--[if lt IE 9]><link rel="stylesheet" href="http://s0.huffpost.com/assets/js.php?v=1421170046&f=conversations%2Fstylesheets%2Fapp.css" /><![endif]-->
<!--[if lte IE 7]><link rel="stylesheet" href="http://s0.huffpost.com/assets/css.php?v=1421170046&f=phoenix%2Fie7.css" type="text/css" /><![endif]-->
<!--[if IE 8]><link rel="stylesheet" href="http://s1.huffpost.com/assets/css.php?v=1421170046&f=phoenix%2Fie8.css" type="text/css" /><![endif]-->
<script type="text/javascript" src="http://s0.huffpost.com/assets/js.php?v=1421170046&f=jquery-1.7.2.min.js"></script>
<script type="text/javascript" src="http://s0.huffpost.com/assets/js.php?v=1421170046&f=jquery%2Fjquery.I18N.js%2Clocale%2Fen_US%2Fpublic.js%2Csprintf-0.7.js"></script>
<script type="text/javascript" src="http://s1.huffpost.com/assets/js.php?v=1421170046&f=huff.js%2Chp_config.js%2Clazyload-min.js%2Chp_util.js%2Chp_track.js%2Cyui_sub.js%2Chp_liveblog.js%2Chptwitter_anywhere.js%2Cphoenix%2Fcustom.modernizr.js%2Cphoenix%2Ffoundation.min.js%2C_tmp%2Fquick_fan.js%2C_tmp%2Fhp_ads.js%2C_tmp%2Fcommon.js%2Chp_browser.js%2Csubmissions.js%2Cphoenix%2Funderscore.js%2Cphoenix%2Fbackbone.js%2Cphoenix%2Fthreeup.js%2Crecipe_gadget.js%2Clivebetteramerica%2Fmodule.jquerydl.js%2Cphoenix%2Ffollow-huffpost.js%2Cphoenix%2Fsocial-sidebar.js%2Cposts.js%2Cphoenix%2Fnumeral.js%2Cphoenix%2Fsocial_widget_views.js%2Cconversations%2Fbootstrap.js%2Cscroll-track.js%2Cphoenix%2Fjquery.colorbox.js%2Cphoenix%2Fthreeup-carousel.js%2Cphoenix%2Flightbox.js%2Cphoenix%2Fjquery.formparams.js%2Cphoenix%2Fsubmit_correction.js%2C_tmp%2Fquick_subscribe_user.js%2Cphoenix%2Fnewsletter.js%2Chptwitter.js%2Cphoenix%2Flogin.js%2C_tmp%2Fclick_tracker.js%2Cphoenix%2Fimage_loader.js%2Cphoenix%2Fcaption.js%2Cconnect_overview.js%2Cimage_embed.js%2Cswfobject.js%2Cphoenix%2Fyoutube_to_5min.js%2Cphoenix%2Fhulu_to_5min.js%2C_tmp%2Fevent_module.js%2Cphoenix%2Fslideshow%2Fjquery.flexslider.js%2Cphoenix%2Fslideshow%2Fhp-slideshow-html.js%2Cphoenix%2Fslideshow%2Fhp-slideshow-tracking.js%2Cphoenix%2Fslideshow%2Fhp-slideshow-share.js%2Cphoenix%2Fslideshow%2Fhp-slideshow-main.js%2Cphoenix%2Fslideshow%2Fhp-slideshow-participation.js%2Cphoenix%2Fslideshow%2Fhp-slideshow-participation_new.js%2Cphoenix%2Fpre_modulous.js%2Con-hover-pinterest.js"></script>
<script type="text/javascript" src="http://s0.huffpost.com/assets/js.php?v=1421170046&f=facebook.js%2Ccookiesmin.js%2Csnproject.js%2C_tmp%2Fquick_login.js%2Chuffconnect.js%2Cprovider.js%2Cpopup_manager.js%2C_util%2Fuser.js%2Cuser.js"></script>
<script type="text/javascript" src="http://s1.huffpost.com/assets/js.php?v=1421170046&f=moat.js"></script>
<script type="text/javascript">
huff.v({"last_deploy_commit_id":"646ad26bec94d7101257e0a57e9eea7b3e929fca","deploy_commit_id":"d5ce9ff01dad7c5f77d51ce7bc060e617ae883e3","deploy_seq":1421170046,"last_deploy_seq":1421168773,"deploy_date":"Tue, 13 Jan 2015 12:27:26 -0500","last_deploy_date":"Tue, 13 Jan 2015 12:06:13 -0500"});
</script>
<script type="text/javascript">
// common modules
huff.use('conf', 'modal', 'image', 'layout', 'cookies', 'user', 'track', 'common', 'promo');
</script>
<!-- modulous header -->
<script type="text/javascript" src="http://o.aolcdn.com/ads/adsWrapper.js" ></script>
<script type="text/javascript">
adSetAdURL('http://' + (document.domain || 'www.huffingtonpost.com') + (location.port?':'+location.port:'') + '/_uac/2014adpage.html');
tacProp={tags:"kvpagetype=bpage:news;kvsubj=4941450:981284:981525:978336:979655:979329:979653:980466;kvtopic=bank-of-america:banks:financial-reform;kventryid=6470358;kvcmsid=hpo:6470358;kveditags=dodd-frank:financial-regulation:jamie-dimon:@health_depression:@health_models:@health_ibs:jamie-dimon-banks-assault:financial-reform:jamie-dimon-whine:jp-morgan-chase:jpmorgan-chase:jamie-dimon-regulation:jp-morgan:jpmorgan;kvvert=business;kvblogger=ben-walsh;kvent=5066249:4234931:4217052:3829962:4958367:3684751:3696068:3542742:3528890:5157193"};
tacProp.tags += ( (typeof HPAds!=="undefined") && (typeof HPAds.adtech_client_side_inf=="function") ) ? HPAds.adtech_client_side_inf() : "";
if (typeof adSetOthAT=="function") adSetOthAT(tacProp.tags);
</script>
<script type="text/javascript">
if (typeof HPAds !== 'undefined') {
HPAds.ad_reload_old = HPAds.ad_reload;
HPAds.ad_reload = function(placement) {
jQuery(document).trigger(jQuery.Event('reloadAd', {"detail": placement}));
HPAds.ad_reload_old.apply(this, arguments);
}
}
</script>
<!-- debugadcode -->
<style>
.debugadcode-box { z-index:10000; position:relative; }
.debugadcode { position:absolute; padding:5px; background-color:rgba(232, 212, 244, 0.85); font-size:0.8rem; color:black; }
</style>
<script>
window.debugadcode = function(title, properties) {
if (window.location.search.indexOf('debug_ad_code') < 0) return;
var head = '<div><strong>'+title+'</strong></div>'; var body = '';
for (key in properties) { body += '<div><em>'+key+'</em>: '+properties[key]+'</div>'; }
var s = document.getElementsByTagName('script');
var sLast = s[s.length - 1];
var d = document.createElement('div');
d.className = 'debugadcode-box';
d.innerHTML = '<div class="debugadcode">'+head+body+'</div>';
sLast.parentNode.insertBefore(d, sLast.nextSibling);
}
</script>
<!-- /debugadcode --> <!-- END modulous header -->
<!-- ads_adtech_header -->
<div id="modulous_adtech_header" class="ad_spot">
</div>
<!-- ads_init_functions -->
<!-- ads_commercial_video -->
<!-- ads_asset_insert -->
<div id="modulous_asset_inserts" class="ad_spot">
<script type="text/javascript">
adSetMOAT("1");
</script><script type="text/javascript">
var __taboola_params = [{mode:"autosized-1r-organic",container:"taboola-autosized-1r-organic"},{mode:"autosized-1r-sc",container:"taboola-autosized-1r-sc"},{loader:"http://cdn.taboola.com/libtrc/thehuffingtonpost/loader.js"}];
</script></div>
<script type="text/javascript">
tacProp={vert:"Homepage",tags:"kvpagetype=atf:desktop;kvvert=business;"};
tacProp.tags += ( (typeof HPAds!=="undefined") && (typeof HPAds.adtech_client_side_inf=="function") ) ? HPAds.adtech_client_side_inf() : "";
if (typeof adSetOthAT=="function") adSetOthAT(tacProp.tags);
</script>
<script type="text/javascript">
var ads_ext_ref_sig = '';
</script>
<script type="text/javascript" src="http://www.google.com/recaptcha/api/js/recaptcha_ajax.js"></script>
<!-- Parsely tracking params start -->
<!-- Parsely tracking params end -->
</head>
<body>
<!-- Newsletter ads popup -->
<!-- END Newsletter ads popup -->
<!--modulous_debug_header -->
<!-- END modulous_debug_header -->
<div id="view_mobile_banner" style="display: none; min-width: 1000px; width: 100%; height: 105px; background: url(/images/mobile/view-mobile-bkg.png);background-size: cover; text-align: center;">
<a href="http://www.huffingtonpost.com/2015/01/14/jamie-dimon-banks-assault_n_6470358.html?m=true" style="color: #FFF; font-size: 40px; display: inline-block; padding-top: 18px; text-transform: uppercase; width: 100%; height: 105px;">
<img src="/images/mobile/view-mobile-icon.png" style="height: 68px; margin-bottom: -16px;"/>
View mobile site </a>
</div>
<script> if(window.navigator.userAgent.match(/SCH-I535|SPH-L710|SGH-N064|SGH-N035|SGH-T999|SGH-I747|GT-I9305|GT-I9300|android.+mobile|iphone|ipod|webos|blackberry.+webkit.+mobile|htc|opera\ mini|operamini|iemobile|opera\ mobi|lge|lg|palm|samsung|nokia|windows\ phone|windows\ ce|bb10|blackberry|Mobile.+Firefox/i)) {
document.getElementById("view_mobile_banner").style.display = 'block';
}
</script>
<!-- RUM header -->
<script type="text/javascript">(window.NREUM||(NREUM={})).loader_config={xpid:"Vg4HV1FADAMCXFhRDw=="};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=s(e),f=c.length,u=i(a,o,r),d=0;f>d;d++)c[d].apply(u,n);return u}function a(t,e){f[t]=s(t).concat(e)}function s(t){return f[t]||[]}function c(){return n(e)}var f={};return{on:a,emit:e,create:c,listeners:s,_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")},{}],3:[function(t){function e(t,e,n,i,s){try{c?c-=1:r("err",[s||new UncaughtException(t,e,n)])}catch(f){try{r("ierr",[f,(new Date).getTime(),!0])}catch(u){}}return"function"==typeof a?a.apply(this,o(arguments)):!1}function UncaughtException(t,e,n){this.message=t||"Uncaught error with no additional information",this.sourceURL=e,this.line=n}function n(t){r("err",[t,(new Date).getTime()])}var r=t("handle"),o=t(5),i=t("ee"),a=window.onerror,s=!1,c=0;t("loader").features.err=!0,window.onerror=e,NREUM.noticeError=n;try{throw new Error}catch(f){"stack"in f&&(t(1),t(4),"addEventListener"in window&&t(2),window.XMLHttpRequest&&XMLHttpRequest.prototype&&XMLHttpRequest.prototype.addEventListener&&t(3),s=!0)}i.on("fn-start",function(){s&&(c+=1)}),i.on("fn-err",function(t,e,r){s&&(this.thrown=!0,n(r))}),i.on("fn-end",function(){s&&!this.thrown&&c>0&&(c-=1)}),i.on("internal-error",function(t){r("ierr",[t,(new Date).getTime(),!0])})},{1:8,2:5,3:9,4:7,5:20,ee:"QJf3ax",handle:"D5DuLP",loader:"G9z0Bl"}],4:[function(t){function e(){}if(window.performance&&window.performance.timing&&window.performance.getEntriesByType){var n=t("ee"),r=t("handle"),o=t(2);t("loader").features.stn=!0,t(1),n.on("fn-start",function(t){var e=t[0];e instanceof Event&&(this.bstStart=Date.now())}),n.on("fn-end",function(t,e){var n=t[0];n instanceof Event&&r("bst",[n,e,this.bstStart,Date.now()])}),o.on("fn-start",function(t,e,n){this.bstStart=Date.now(),this.bstType=n}),o.on("fn-end",function(t,e){r("bstTimer",[e,this.bstStart,Date.now(),this.bstType])}),n.on("pushState-start",function(){this.time=Date.now(),this.startPath=location.pathname+location.hash}),n.on("pushState-end",function(){r("bstHist",[location.pathname+location.hash,this.startPath,this.time])}),"addEventListener"in window.performance&&(window.performance.addEventListener("webkitresourcetimingbufferfull",function(){r("bstResource",[window.performance.getEntriesByType("resource")]),window.performance.webkitClearResourceTimings()},!1),window.performance.addEventListener("resourcetimingbufferfull",function(){r("bstResource",[window.performance.getEntriesByType("resource")]),window.performance.clearResourceTimings()},!1)),document.addEventListener("scroll",e,!1),document.addEventListener("keypress",e,!1),document.addEventListener("click",e,!1)}},{1:6,2:8,ee:"QJf3ax",handle:"D5DuLP",loader:"G9z0Bl"}],5:[function(t,e){function n(t){i.inPlace(t,["addEventListener","removeEventListener"],"-",r)}function r(t){return t[1]}var o=(t(1),t("ee").create()),i=t(2)(o),a=t("gos");if(e.exports=o,n(window),"getPrototypeOf"in Object){for(var s=document;s&&!s.hasOwnProperty("addEventListener");)s=Object.getPrototypeOf(s);s&&n(s);for(var c=XMLHttpRequest.prototype;c&&!c.hasOwnProperty("addEventListener");)c=Object.getPrototypeOf(c);c&&n(c)}else XMLHttpRequest.prototype.hasOwnProperty("addEventListener")&&n(XMLHttpRequest.prototype);o.on("addEventListener-start",function(t){if(t[1]){var e=t[1];"function"==typeof e?this.wrapped=t[1]=a(e,"nr@wrapped",function(){return i(e,"fn-",null,e.name||"anonymous")}):"function"==typeof e.handleEvent&&i.inPlace(e,["handleEvent"],"fn-")}}),o.on("removeEventListener-start",function(t){var e=this.wrapped;e&&(t[1]=e)})},{1:20,2:21,ee:"QJf3ax",gos:"7eSDFh"}],6:[function(t,e){var n=(t(2),t("ee").create()),r=t(1)(n);e.exports=n,r.inPlace(window.history,["pushState"],"-")},{1:21,2:20,ee:"QJf3ax"}],7:[function(t,e){var n=(t(2),t("ee").create()),r=t(1)(n);e.exports=n,r.inPlace(window,["requestAnimationFrame","mozRequestAnimationFrame","webkitRequestAnimationFrame","msRequestAnimationFrame"],"raf-"),n.on("raf-start",function(t){t[0]=r(t[0],"fn-")})},{1:21,2:20,ee:"QJf3ax"}],8:[function(t,e){function n(t,e,n){var r=t[0];"string"==typeof r&&(r=new Function(r)),t[0]=o(r,"fn-",null,n)}var r=(t(2),t("ee").create()),o=t(1)(r);e.exports=r,o.inPlace(window,["setTimeout","setInterval","setImmediate"],"setTimer-"),r.on("setTimer-start",n)},{1:21,2:20,ee:"QJf3ax"}],9:[function(t,e){function n(){c.inPlace(this,d,"fn-")}function r(t,e){c.inPlace(e,["onreadystatechange"],"fn-")}function o(t,e){return e}var i=t("ee").create(),a=t(1),s=t(2),c=s(i),f=s(a),u=window.XMLHttpRequest,d=["onload","onerror","onabort","onloadstart","onloadend","onprogress","ontimeout"];e.exports=i,window.XMLHttpRequest=function(t){var e=new u(t);try{i.emit("new-xhr",[],e),f.inPlace(e,["addEventListener","removeEventListener"],"-",function(t,e){return e}),e.addEventListener("readystatechange",n,!1)}catch(r){try{i.emit("internal-error",[r])}catch(o){}}return e},window.XMLHttpRequest.prototype=u.prototype,c.inPlace(XMLHttpRequest.prototype,["open","send"],"-xhr-",o),i.on("send-xhr-start",r),i.on("open-xhr-start",r)},{1:5,2:21,ee:"QJf3ax"}],10:[function(t){function e(t){if("string"==typeof t&&t.length)return t.length;if("object"!=typeof t)return void 0;if("undefined"!=typeof ArrayBuffer&&t instanceof ArrayBuffer&&t.byteLength)return t.byteLength;if("undefined"!=typeof Blob&&t instanceof Blob&&t.size)return t.size;if("undefined"!=typeof FormData&&t instanceof FormData)return void 0;try{return JSON.stringify(t).length}catch(e){return void 0}}function n(t){var n=this.params,r=this.metrics;if(!this.ended){this.ended=!0;for(var i=0;c>i;i++)t.removeEventListener(s[i],this.listener,!1);if(!n.aborted){if(r.duration=(new Date).getTime()-this.startTime,4===t.readyState){n.status=t.status;var a=t.responseType,f="arraybuffer"===a||"blob"===a||"json"===a?t.response:t.responseText,u=e(f);if(u&&(r.rxSize=u),this.sameOrigin){var d=t.getResponseHeader("X-NewRelic-App-Data");d&&(n.cat=d.split(", ").pop())}}else n.status=0;r.cbTime=this.cbTime,o("xhr",[n,r,this.startTime])}}}function r(t,e){var n=i(e),r=t.params;r.host=n.hostname+":"+n.port,r.pathname=n.pathname,t.sameOrigin=n.sameOrigin}if(window.XMLHttpRequest&&XMLHttpRequest.prototype&&XMLHttpRequest.prototype.addEventListener&&!/CriOS/.test(navigator.userAgent)){t("loader").features.xhr=!0;var o=t("handle"),i=t(2),a=t("ee"),s=["load","error","abort","timeout"],c=s.length,f=t(1);t(4),t(3),a.on("new-xhr",function(){this.totalCbs=0,this.called=0,this.cbTime=0,this.end=n,this.ended=!1,this.xhrGuids={}}),a.on("open-xhr-start",function(t){this.params={method:t[0]},r(this,t[1]),this.metrics={}}),a.on("open-xhr-end",function(t,e){"loader_config"in NREUM&&"xpid"in NREUM.loader_config&&this.sameOrigin&&e.setRequestHeader("X-NewRelic-ID",NREUM.loader_config.xpid)}),a.on("send-xhr-start",function(t,n){var r=this.metrics,o=t[0],i=this;if(r&&o){var f=e(o);f&&(r.txSize=f)}this.startTime=(new Date).getTime(),this.listener=function(t){try{"abort"===t.type&&(i.params.aborted=!0),("load"!==t.type||i.called===i.totalCbs&&(i.onloadCalled||"function"!=typeof n.onload))&&i.end(n)}catch(e){try{a.emit("internal-error",[e])}catch(r){}}};for(var u=0;c>u;u++)n.addEventListener(s[u],this.listener,!1)}),a.on("xhr-cb-time",function(t,e,n){this.cbTime+=t,e?this.onloadCalled=!0:this.called+=1,this.called!==this.totalCbs||!this.onloadCalled&&"function"==typeof n.onload||this.end(n)}),a.on("xhr-load-added",function(t,e){var n=""+f(t)+!!e;this.xhrGuids&&!this.xhrGuids[n]&&(this.xhrGuids[n]=!0,this.totalCbs+=1)}),a.on("xhr-load-removed",function(t,e){var n=""+f(t)+!!e;this.xhrGuids&&this.xhrGuids[n]&&(delete this.xhrGuids[n],this.totalCbs-=1)}),a.on("addEventListener-end",function(t,e){e instanceof XMLHttpRequest&&"load"===t[0]&&a.emit("xhr-load-added",[t[1],t[2]],e)}),a.on("removeEventListener-end",function(t,e){e instanceof XMLHttpRequest&&"load"===t[0]&&a.emit("xhr-load-removed",[t[1],t[2]],e)}),a.on("fn-start",function(t,e,n){e instanceof XMLHttpRequest&&("onload"===n&&(this.onload=!0),("load"===(t[0]&&t[0].type)||this.onload)&&(this.xhrCbStart=(new Date).getTime()))}),a.on("fn-end",function(t,e){this.xhrCbStart&&a.emit("xhr-cb-time",[(new Date).getTime()-this.xhrCbStart,this.onload,e],e)})}},{1:"XL7HBI",2:11,3:9,4:5,ee:"QJf3ax",handle:"D5DuLP",loader:"G9z0Bl"}],11:[function(t,e){e.exports=function(t){var e=document.createElement("a"),n=window.location,r={};e.href=t,r.port=e.port;var o=e.href.split("://");return!r.port&&o[1]&&(r.port=o[1].split("/")[0].split(":")[1]),r.port&&"0"!==r.port||(r.port="https"===o[0]?"443":"80"),r.hostname=e.hostname||n.hostname,r.pathname=e.pathname,"/"!==r.pathname.charAt(0)&&(r.pathname="/"+r.pathname),r.sameOrigin=!e.hostname||e.hostname===document.domain&&e.port===n.port&&e.protocol===n.protocol,r}},{}],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=p.info=NREUM.info;if(t&&t.agent&&t.licenseKey&&t.applicationID&&c&&c.body){p.proto="https"===d.split(":")[0]||t.sslForHttp?"https://":"http://",a("mark",["onload",i()]);var e=c.createElement("script");e.src=p.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"),s=window,c=s.document,f="addEventListener",u="attachEvent",d=(""+location).split("?")[0],p=e.exports={offset:i(),origin:d,features:{}};c[f]?(c[f]("DOMContentLoaded",o,!1),s[f]("load",n,!1)):(c[u]("onreadystatechange",r),s[u]("onload",n)),a("mark",["firstbyte",i()])},{handle:"D5DuLP"}],20:[function(t,e){function n(t,e,n){e||(e=0),"undefined"==typeof n&&(n=t?t.length:0);for(var r=-1,o=n-e||0,i=Array(0>o?0:o);++r<o;)i[r]=t[e+r];return i}e.exports=n},{}],21:[function(t,e){function n(t){return!(t&&"function"==typeof t&&t.apply&&!t[i])}var r=t("ee"),o=t(1),i="nr@wrapper",a=Object.prototype.hasOwnProperty;e.exports=function(t){function e(t,e,r,a){function nrWrapper(){var n,i,s,f;try{i=this,n=o(arguments),s=r&&r(n,i)||{}}catch(d){u([d,"",[n,i,a],s])}c(e+"start",[n,i,a],s);try{return f=t.apply(i,n)}catch(p){throw c(e+"err",[n,i,p],s),p}finally{c(e+"end",[n,i,f],s)}}return n(t)?t:(e||(e=""),nrWrapper[i]=!0,f(t,nrWrapper),nrWrapper)}function s(t,r,o,i){o||(o="");var a,s,c,f="-"===o.charAt(0);for(c=0;c<r.length;c++)s=r[c],a=t[s],n(a)||(t[s]=e(a,f?s+o:o,i,s,t))}function c(e,n,r){try{t.emit(e,n,r)}catch(o){u([o,e,n,r])}}function f(t,e){if(Object.defineProperty&&Object.keys)try{var n=Object.keys(t);return n.forEach(function(n){Object.defineProperty(e,n,{get:function(){return t[n]},set:function(e){return t[n]=e,e}})}),e}catch(r){u([r])}for(var o in t)a.call(t,o)&&(e[o]=t[o]);return e}function u(e){try{t.emit("internal-error",e)}catch(n){}}return t||(t=r),e.inPlace=s,e.flag=i,e}},{1:20,ee:"QJf3ax"}]},{},["G9z0Bl",3,10,4]);</script> <!-- GA, Data Layer and Omniture -->
<script type="text/javascript">
var _gaq = _gaq || [];
HPTrack.async = true;
HPTrack.getTracker('UA-71081-1');
HPTrack.setCustomVar("news", "default");
HPTrack.setCustomVar("vertical", "Business");
HPTrack.trackPageview();
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(ga);
})();
bN_cfg = {
h: location.hostname,
p: {"dL_ch":"us.hpmgbus","dL_flid":"_","dL_dpt":"default","dL_cmsID":"hpo:6470358","dL_author":"Ben Walsh","dL_crtdt":"2015-01-14 09:42:15","dL_pubts":1421256563000,"dL_blogID":2,"dL_tags":"@health_depression,@health_ibs,@health_models,JP Morgan Chase,Jamie Dimon,dodd-frank,Financial Regulation,Financial Reform,jamie dimon banks assault,jamie dimon regulation,jamie dimon whine,JPMorgan Chase,jpmorgan,JP Morgan","cobrand":"HuffPost","dL_vid":"video_novideo"}
};
function runOmni() {
if(typeof HuffPoUtil != "undefined"){
if (HuffPoUtil.getCookie('huffpost_user_id') != '')
s_265.eVar17 = 'huffpost_' + HuffPoUtil.getCookie('huffpost_user_id');
}
s_265.prop54 = 'huffpost';
s_265.pfxID = 'hpo';
s_265.channel = 'us.hpmgbus';
s_265.linkInternalFilters = 'javascript:,huffingtonpost.com';
s_265.prop16 = 'news';
s_265.prop1 = 'default';
s_265.prop62 = 'video_novideo';
s_265.pageName = "" + document.title;
s_265.prop9 = 'hpo:6470358';
s_265.prop22 = 'ben-walsh';
s_265.prop23 = '01-14-2015';
s_265.prop12 = "" + document.URL.split('?')[0];
s_265.prop19 = '|jp-morgan-chase|jamie-dimon|doddfrank|financial-regulation|financial-reform|jamie-dimon-banks-assault|jamie-dimon-regulation|jamie-dimon-whine|jpmorgan-chase|jpmorgan|jp-morgan|';
s_265.t();
}
s_265_account ="aolhuffpostbusiness,aolsvc";
(function(d){
var s = d.createElement('script');
s.src = "http://o.aolcdn.com/os_merge/?file=/aol/beacon.min.js&file=/aol/omniture.min.js";
d.getElementsByTagName('head')[0].appendChild(s);
})(document);
__reach_config = {
pid: '523a4a96e79548b89a000003',
iframe: true,
title: "" + document.title,
url: 'http://www.huffingtonpost.com/2015/01/14/jamie-dimon-banks-assault_n_6470358.html',
date: '2015-01-14 09:42:15',
authors: ["Ben Walsh"],
channels: ["us.hpmgbus"],
tags: new Array('@health_depression','@health_ibs','@health_models','jp-morgan-chase','jamie-dimon','dodd-frank','financial-regulation','financial-reform','jamie-dimon-banks-assault','jamie-dimon-regulation','jamie-dimon-whine','jpmorgan-chase','jpmorgan','jp-morgan')
};
(function(){
var s = document.createElement('script');
s.async = true;
s.type = 'text/javascript';
s.src = document.location.protocol + '//d8rk54i4mohrb.cloudfront.net/js/reach.js';
(document.getElementsByTagName('head')[0] ||
document.getElementsByTagName('body')[0]).appendChild(s);
})();
</script>
<!-- comScore Tag -->
<script type="text/javascript">
document.write(unescape("%3Cscript src='" + (document.location.protocol == "https:" ? "https://sb" : "http://b") + ".scorecardresearch.com/beacon.js' %3E%3C/script%3E"));
</script>
<script type="text/javascript">
var comscore_data = {
c1:2,
c2:6723616,
c3:"",
c4:"",
c5:"business",
c6:"",
c15:"",
options: {
url_append: "comscorekw=business"
}
}
COMSCORE.beacon(comscore_data);
</script>
<noscript>
<img src="http://b.scorecardresearch.com/p?c1=2&c2=6723616&c3=&c4=&c5=business&c6=&c15=&cj=1" width="1" height="1" alt="" />
</noscript>
<!-- end Rum -->
<!-- ads_top_1x1 -->
<div id="modulous_top_1x1" class="ad_spot">
<style type="text/css">.shares .email{display: none !important;}</style><!-- polar.me -->
<script type="text/javascript">
if (typeof polar_config == "undefined") {
var hour_timestamp = Math.round(+new Date()/1000/60/60)
var polar_config = [
{label:"Homepage- Right Rail Unit", id:"93416621"},
{label:"Homepage- Left Rail Unit", id:"93416620"},
{label:"Homepage- Brand Blog Unit", id:"93416622"},
{label:"Article Page- Right Rail Unit", id:"93416621"},
];
document.write('<scr'+'ipt async="true" src="http://modulous.huffpost.com/2014/07/25/1406302301-20140725_polar_plugin_desktop.js"></scr'+'ipt>');
}
</script>
<!-- /polar.me -->
</div>
<!-- Facebook stuff -->
<div id="fb-root"></div>
<script type="text/javascript">
HPFB.init();
HPFB.app_id = "46744042133";
HPFB.api_key = "4d965afccc4d86c598dbf5d94fb34a7c";
HPFB.app_namespace = "huffpost";
// modal form that encourages user to like HP FB page
huff.use('yahoofacebook', function(y) { y.likesFromYahoo(); });
</script>
<!--User auth stuff -->
<script type="text/javascript">
HPConfig.locale = "en_US";
HPConfig.enable_fb_widgets = 1;
HPVertical = "";
</script>
<script type="text/javascript">
var zone_info = "huffpost.business";
HPConfig.current_vertical_name = "business";
HPConfig.current_vertical_id = 5;
HPConfig.current_web_address = "www.huffingtonpost.com";
HPConfig.current_uri = "/2015/01/14/jamie-dimon-banks-assault_n_6470358.html";
HPConfig.entry_bitly_url = "http://huff.to/1xZw1tO";
HPConfig.entry_seo_title = "Jamie Dimon Says Banks Are Under Assault As He Announces $4.9 Billion Profit";
HPConfig.hp_static_domain = "s.huffpost.com";
HPConfig.inst_type = "prod";
HPConfig.timestamp_for_clearing_js = "0";
HPConfig.wide_format = 0;
HPConfig.entry_id = 6470358;
HPConfig.blog_id = 2;
HPConfig.display_domain = "";
HPConfig.page_type = "bpage";
HPConfig.twitter_signature = "@HuffPostBiz";
HPConfig.current_vertical_color = "#2b0073";
HPConfig.current_vertical_color_light = "#1F0050";
HPConfig.entry_tags = new Array('');
HPConfig.huffsite = "www.huffingtonpost.com";
HPConfig.fb_lang = "en_US";
HPConfig.googleplus_lang = "en-US";
HPConfig.image = "http:\/\/i.huffpost.com\/gen\/2491664\/thumbs\/s-JAMIE-DIMON-large.jpg";
HPConfig.fb_page_id = "57059743374";
HPConfig.fb_vertical_name = "Business";
HPConfig.fb_vertical_handle = "HuffPostBusiness";
HPConfig.recaptcha_key = "6Ld6ZcISAAAAAIhkL02obhQNn6tdW47W-t-HcPAO";
HPConfig.bit_ly_key = {"_Note":"bit.ly public key, will generate huff.to links only for whitelisted domains","user_name":"huffpostapi","user_key":"R_d7766e99c939e9f2b0c074c155e98b83"};
HPConfig.terms_link = "http://www.huffingtonpost.com/terms.html";
HPConfig.privacy_link = "";
</script>
<!-- ads_pushdown -->
<!-- / working -->
<script>
jQuery(window).bind( 'load', function() {
//Twitter
window.twttr = (function (d,s,id) {
var t, js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return; js=d.createElement(s); js.id=id;
js.src="//platform.twitter.com/widgets.js"; fjs.parentNode.insertBefore(js, fjs);
return window.twttr || (t = { _e: [], ready: function(f){ t._e.push(f) } });
}(document, "script", "twitter-wjs"));
//Google+
(function() {
var po = document.createElement('script'); po.type = 'text/javascript'; po.async = true;
po.src = 'https://apis.google.com/js/plusone.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(po, s);
})();
//StumbleUpon
(function() {
var li = document.createElement('script'); li.type = 'text/javascript'; li.async = true;
li.src = ('https:' == document.location.protocol ? 'https:' : 'http:') + '//platform.stumbleupon.com/1/widgets.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(li, s);
})();
//LinkedIn
jQuery.getScript( '//platform.linkedin.com/in.js', function() { lang: 'en_us' } );
//Pintrest
/* jQuery.getScript( '//assets.pinterest.com/js/pinit.js', function() {}); */
});
</script>
<!-- Tuenti
<script type="text/javascript" src="http://widgets.tuenti.com/widgets.js"></script>
-->
<!--[if lt IE 7]>
<p class="chromeframe">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> or <a href="http://www.google.com/chromeframe/?redirect=true">activate Google Chrome Frame</a> to improve your experience.</p>
<![endif]-->
<!-- ads_pushdown -->
<!-- ads_quickread -->
<!-- ads_quickread_most_popular -->
<!-- page_wrapper -->
<!-- classes for page wrapper: wrapper bpage [[entry/blog], wide] -->
<div id="wrapper" class="wrapper bpage entry business regular">
<!-- ads_sponsored_content_logo -->
<!-- Phoenix buglist -->
<!-- page_header -->
<section class="header">
<!-- AOL navbar for UK -->
<!-- visual_header_area -->
<header class="masthead group">
<!-- ads_leaderboard_flex -->
<div id="modulous_leaderboard_flex" class="ad_spot">
<style type="text/css">#topnav_margin_btm { margin0 !important }</style>
<div id="ad_leaderboard_flex" class="ad_wrapper_"><script type="text/javascript">
var adId = '93318027';
var args = [adId, 'lb', 'lb'
, 'f'];
if (typeof debugadcode == 'function') { debugadcode('AdTech', {placement: 'leaderboard_flex', args: args}); }
htmlAdWH.apply(this, args);
adSetInView('0');
</script>
</div>
<script type="text/javascript">HPAds.ad_onload('div[id^="ad_leaderboard_flex"] iframe','HPAds.ad_uac_onload_handler(\' iframe[class^="uac_"]\',this,\'bottom_ad_border_div\',10)')</script></div>
<!-- ads_leaderboard_top -->
<!-- page branding and current date -->
<div class="tophead_wrapper">
<div class="branding">
<time datetime="2015-01-14">January 14, 2015</time>
<a href="http://www.huffingtonpost.com/business">
<strong class="title business" >Huffpost Business</strong>
</a>
</div>
<!-- edition dropdown -->
<!-- edition dropdown -->
<div class="edition geo_dropdown">
<span class="current">
Edition: <strong class="this-region">U.S.</strong>
<span class="arrow-down"></span>
<button class="show-hide" data-target=".editions">Show/Hide</button>
</span>
<menu class="editions inner off">
<ul>
<li>
<a href="http://www.huffingtonpost.com/?country=BR">
<span>Brasil</span> <strong>BR</strong>
</a>
</li>
<li>
<a href="http://www.huffingtonpost.com/?country=CA">
<span>Canada</span> <strong>CA</strong>
</a>
</li>
<li>
<a href="http://www.huffingtonpost.com/?country=DE">
<span>Deutschland</span> <strong>DE</strong>
</a>
</li>
<li>
<a href="http://www.huffingtonpost.com/?country=ES">
<span>España</span> <strong>ES</strong>
</a>
</li>
<li>
<a href="http://www.huffingtonpost.com/?country=FR">
<span>France</span> <strong>FR</strong>
</a>
</li>
<li>
<a href="http://www.huffingtonpost.com/?country=GR">
<span>Ελλάδα (Greece)</span> <strong>GR</strong>
</a>
</li>
<li>
<a href="http://www.huffingtonpost.com/?country=IN">
<span>India</span> <strong>IN</strong>
</a>
</li>
<li>
<a href="http://www.huffingtonpost.com/?country=IT">
<span>Italia</span> <strong>IT</strong>
</a>
</li>
<li>
<a href="http://www.huffingtonpost.com/?country=JP">
<span>日本 (Japan)</span> <strong>JP</strong>
</a>
</li>
<li>
<a href="http://www.huffingtonpost.com/?country=KR">
<span>한국 (Korea)</span> <strong>KR</strong>
</a>
</li>
<li>
<a href="http://www.huffingtonpost.com/?country=MG">
<span>Maghreb</span> <strong>MG</strong>
</a>
</li>
<li>
<a href="http://www.huffingtonpost.com/?country=UK">
<span>United Kingdom</span> <strong>UK</strong>
</a>
</li>
<li>
<a href="http://www.huffingtonpost.com/?country=US">
<span>United States</span> <strong>US</strong>
</a>
</li>
</ul>
</menu>
</div>
<!-- wrapper of line of social, newsletter -->
<div id="social-subscribe-search" class="social-subscribe-search group">
<ul class="group">
<li class="facebook">
<div class="content like">
<!-- facebook button code -->
<div class="fb-like" data-href="http://www.facebook.com/HuffPostBusiness/" data-send="false" data-layout="button_count" data-width="40" data-show-faces="false" data-colorscheme="light" data-font="trebuchet ms" data-action="like" ref="" style="width: 40px" ></div> </div>
</li>
<li class="twitter">
<div class="content tweet">
<!-- twitter button code -->
<a href="https://twitter.com/HuffPostBiz" class="twitter-follow-button" data-show-screen-name="false" data-show-count="false" data-lang="en" data-width="220px">Follow</a>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script>
</div>
</li>
<li class="newsletters" data-fx="hover">
<div class="content">
<strong>Newsletters</strong>
<div class="form">
<!-- sign up for vertical newsletter -->
<div class="newsletters" >
<form action="#">
<fieldset>
<legend>Get BusinessNewsletters</legend>
<label for="newsletter-email">Email address</label>
<input class="input-email" placeholder="Enter email" id="newsletter-email" type="text" />
<label for="newsletter-submit">Enter Email Address</label>
<input data-vertical="business" class="submit" id="newsletter-submit" type="submit" value="Go" />
</fieldset>
</form>
</div>
</div>
</div>
</li>
<li class="search" data-fx="hover">
<div class="content">
<strong class="text">Huffington Post Search</strong>
<div class="form">
<!-- search box -->
<div class="search">
<form class="group" action="/search.php/?" method="get">
<fieldset>
<legend>Search The Huffington Post</legend>
<label for="search-terms">Enter Search Terms</label>
<input class="input-term" name="q" placeholder="Huffington Post Search" id="search-terms" type="text" tabindex="13" />
<label for="search-submit">Submit Search</label>
<input type="hidden" name="s_it" value="header_form_v1">
<input class="submit" id="search-submit" type="submit" value="Go" />
</fieldset>
</form>
</div>
</div>
</div>
</li>
</ul>
</div>
<div class="clear"></div>
</div><!-- .tophead_wrapper ENDS -->
</header>
<!-- line of links that sit on top of the visual header and user account controls -->
<div class="topnav">
<!-- line of links that sit on top of the visual header -->
<div class="links-products" >
<!-- big news links that are vertical specific -->
<div class="big-news-links">
<ul>
<li class="commercial_big_news_links">
<!-- ads_big_news_link -->
</li>
</ul>
</div>
<!-- links to HP products that are the same across all verticals -->
<div class="products" >
<ul>
<li><a href="http://itunes.apple.com/us/app/the-huffington-post/id306621789?mt=8" >iOS app</a></li>
<li><a href="https://play.google.com/store/apps/details?id=com.huffingtonpost.android&hl=en" >Android app</a></li>
<li><a href="/big-news/#business" >More</a></li>
</ul>
</div>
</div>
<!-- user account controls -->
<!-- user account controls -->
<div id="wendybird_user" class="user">
<div class="not-logged-in">
<ul class="group">
<li><span class="hidden"><a href="javascript:void(0);" onclick="return false;" class="hp_desktop_alerts">Desktop Alerts</button></span></li>
<li> <a href="javascript:void(0);" onclick="HPConnect.Login();return false;" class="log-in">Log in</a></li>
<li><a href="javascript:void(0);" onclick="HPConnect.Signup();return false;" class="create-account">Create Account</a></li>
</ul>
</div>
<div class="logged-in off">
<div id="wendybird_user_data" class="account vcard">
<div class="top group">
<figure>
<img src="" alt="" width="20" height="20" />
</figure>
<span class="username">$USERNAME</span>
</div>
<menu class="controls">
<ul>
<li>
<span class="hidden"><a href="javascript:void(0);" onclick="return false;" class="hp_desktop_alerts">Desktop Notifications</button></span>
</li>
<li>
<a href="/social/" class="profile">Profile</a>
</li>
<li>
<a href="/users/preferences/">Settings</a></li>
<li>
<a href="/users/logout/?referer=%2F" onclick="QuickLogin.SocialLogout('/users/logout/?referer=%2F'); return false;">
Logout </a>
</li>
</ul>
</menu>
</div>
</div>
</div>
<script type="text/javascript">
HPUtil.initUserNavStatus(false);
SocialNotifications.setEvents();
huff.use('desktop_stream');
</script>
</div>
<!-- large banner ad -->
</section>
<script>
(function($){ // no Conflict
$(function() { // dom ready
var socialSubSearch = $('#social-subscribe-search'),
search = socialSubSearch.find('.search'),
newsletter = socialSubSearch.find('.newsletters'),
rollout = socialSubSearch.find('[data-fx="hover"]'),
liContent = socialSubSearch.find('.content'),
searchInput = search.find('.input-term'),
searchText = search.find('.text');
var searchcheck="Huffington Post Search";
var checkInputContent = function(evt){
var inputVal = searchInput.val();
if (inputVal != searchcheck && inputVal != "") {
search.addClass('searching');
} else {
search.removeClass('searching');
}
};
newsletter.find('.content').hover(
function(){
var inputVal = searchInput.val();
if (inputVal != searchcheck && inputVal != "") {
search.removeClass('searching');
searchText.text(inputVal.slice(0, 3) + '...');
}
},
function(){
var inputVal = searchInput.val();
if (inputVal != searchcheck && inputVal != "") {
search.addClass('searching');
searchText.text('Huffpost Search');
}
}
);
search.mouseout(checkInputContent);
searchInput.blur(checkInputContent);
// rollover effects
liContent
.on('mouseenter', function() {
var that = $(this),
thatParent = that.parent('li'),
inputField = that.find('input[type="text"]');
if(thatParent.data('fx') === 'hover') {
thatParent.addClass('hover');
inputField.focus();
}
})
.on('mouseleave', function() {
var that = $(this),
thatParent = that.parent('li'),
inputField = that.find('input[type="text"]');
thatParent.removeClass('hover');
inputField.blur();
});
// end liContent
});
})(jQuery);
</script>
<!-- END page_header -->
<!-- page_navigation -->
<nav class="main group">
<!-- top nav bar -->
<section class="verticals business group" data-beacon='{"p":{"mnid":"topnav_first_row","mlid":"topnav"}}' >
<ul class="verticals-ul">
<li class="front-page toplevel" data-beacon='{"p":{"lnid":"homepage"}}' >
<a class="toplevel-a" href="http://www.huffingtonpost.com" title="Home" tabindex="1" class="link">FRONT PAGE</a>
</li>
<li class="politics toplevel" data-beacon='{"p":{"lnid":"politics"}}' >
<a class="toplevel-a" href="http://www.huffingtonpost.com/politics/" tabindex="2" class="link">Politics</a>
<!-- dropdown for this item -->
<div class="menu-container">
<menu class="group">
<!-- left colum -->
<section class="more-stories trending" >
<ul>
<li data-id="6458848" >
<article>
<a href="http://www.huffingtonpost.com/2015/01/12/barack-obama-reggie-love_n_6458848.html?ir=Politics">Here's How Obama Reacted When He Walked In On An Aide Who Was With Someone In Bed</a>
<a data-anchor="#comments" class="comments" href="http://www.huffingtonpost.com/2015/01/12/barack-obama-reggie-love_n_6458848.html?ir=Politics#comments">486</a>
</article>
</li>
<li data-id="6463328" >
<article>
<a href="http://www.huffingtonpost.com/2015/01/13/heritage-mitt-romney-2016_n_6463328.html?ir=Politics">Mitt 3.0 Fails To Impress Conservatives At Major Conference In Washington</a>
<a data-anchor="#comments" class="comments" href="http://www.huffingtonpost.com/2015/01/13/heritage-mitt-romney-2016_n_6463328.html?ir=Politics#comments">559</a>
</article>
</li>
<li data-id="6465900" >
<article>
<a href="http://www.huffingtonpost.com/2015/01/13/regulation-stealth-attack_n_6465900.html?ir=Politics">House Tries To Stop All New Government Rules</a>
<a data-anchor="#comments" class="comments" href="http://www.huffingtonpost.com/2015/01/13/regulation-stealth-attack_n_6465900.html?ir=Politics#comments">694</a>
</article>
</li>
<li data-id="6470288" >
<article>
<a href="http://www.huffingtonpost.com/2015/01/14/house-republicans-dhs-immigration_n_6470288.html?ir=Politics">House GOP Votes To Block Protections For Undocumented Immigrants</a>
<a data-anchor="#comments" class="comments" href="http://www.huffingtonpost.com/2015/01/14/house-republicans-dhs-immigration_n_6470288.html?ir=Politics#comments">0</a>
</article>
</li>
<li data-id="6470234" >
<article>
<a href="http://www.huffingtonpost.com/2015/01/14/mitt-romney-2016-isis_n_6470234.html?ir=Politics">Romney Adviser: If Mitt Were President, 'There Wouldn't Be An ISIS At All'</a>
<a data-anchor="#comments" class="comments" href="http://www.huffingtonpost.com/2015/01/14/mitt-romney-2016-isis_n_6470234.html?ir=Politics#comments">0</a>
</article>
</li>
</ul>
<!-- ads_top_nav_edit_promo -->
<a class="goto" href="http://www.huffingtonpost.com/politics/">Go to Politics</a>
</section>
<!-- right column -->
<div class="more-vertical">
<section class="more-in">
<strong>More in Politics</strong>
<ul data-beacon='{"p":{"lnid":"more_in"}}' >
<li><a href="http://www.huffingtonpost.com/news/pollster/">Pollster</a></li>
<li><a href="http://www.huffingtonpost.com/news/huffpolitics-blog/">Politics Blog</a></li>
<li><a href="http://www.offthebus.org">Off The Bus</a></li>
<li><a href="http://elections.huffingtonpost.com/">Election Maps</a></li>
<li><a href="http://elections.huffingtonpost.com/pollster">Pollster</a></li>
</ul>
</section>
<section class="might-like">
<strong>You Might Also Like</strong>
<ul data-beacon='{"p":{"lnid":"like_list"}}' >
<li><a href="http://www.huffingtonpost.com/world/">WorldPost</a></li>
<li><a href="http://www.huffingtonpost.com/green/">Green</a></li>
<li><a href="http://www.huffingtonpost.com/black-voices/">Black Voices</a></li>
<li><a href="http://www.huffingtonpost.com/latino-voices/">Latino Voices</a></li>
<li><a href="http://www.huffingtonpost.com/gay-voices/">Gay Voices</a></li>
</ul>
</section>
</div>
</menu>
</div>
</li>
<li class="small-business toplevel" data-beacon='{"p":{"lnid":"small-business"}}' >
<a class="toplevel-a" href="http://www.huffingtonpost.com/small-business/" tabindex="3" class="link">Small Biz</a>
<!-- dropdown for this item -->
<div class="menu-container">
<menu class="group">
<!-- left colum -->
<section class="more-stories trending" >
<ul>
<li data-id="6466484" >
<article>
<a href="http://www.huffingtonpost.com/2015/01/14/success-before-breakfast_n_6466484.html?ir=Small+Business">7 Things Successful People Always Do Before Breakfast</a>
<a data-anchor="#comments" class="comments" href="http://www.huffingtonpost.com/2015/01/14/success-before-breakfast_n_6466484.html?ir=Small+Business#comments">2</a>
</article>
</li>
<li data-id="6444278" >
<article>
<a href="http://www.huffingtonpost.com/2015/01/12/productivity-hacks_n_6444278.html?ir=Small+Business">23 Productivity Hacks To Keep You On Track In 2015</a>
<a data-anchor="#comments" class="comments" href="http://www.huffingtonpost.com/2015/01/12/productivity-hacks_n_6444278.html?ir=Small+Business#comments">1</a>
</article>
</li>
<li data-id="6445670" >
<article>
<a href="http://www.huffingtonpost.com/jeremy-sandow/5-old-rules-of-business-s_b_6445670.html?ir=Small+Business">5 Old Rules of Business Success That Have Changed for 2015</a>
<a data-anchor="#comments" class="comments" href="http://www.huffingtonpost.com/jeremy-sandow/5-old-rules-of-business-s_b_6445670.html?ir=Small+Business#comments">1</a>
</article>
</li>
</ul>
<!-- ads_top_nav_edit_promo -->
<a class="goto" href="http://www.huffingtonpost.com/small-business/">Go to Small Biz</a>
</section>
<!-- right column -->
<div class="more-vertical">
<section class="more-in">
<strong>More in Small Biz</strong>
<ul data-beacon='{"p":{"lnid":"more_in"}}' >
<li><a href="http://www.huffingtonpost.com/news/huffpost-small-business-board-of-directors/">Board of Directors</a></li>
<li><a href="http://www.huffingtonpost.com/news/small-business-success-stories/">Success Stories</a></li>
<li><a href="http://www.huffingtonpost.com/news/5-things-you-need-to-know/">5 Things You Need To Know</a></li>
<li><a href="http://www.huffingtonpost.com/news/small-business-tools/">Tools</a></li>
<li><a href="http://www.huffingtonpost.com/news/small-business-news-and-trends/">News and Trends</a></li>
</ul>
</section>
<section class="might-like">
<strong>You Might Also Like</strong>
<ul data-beacon='{"p":{"lnid":"like_list"}}' >
<li><a href="http://www.huffingtonpost.com/business/">Business</a></li>
<li><a href="http://www.huffingtonpost.com/money/">Money</a></li>
<li><a href="http://www.huffingtonpost.com/technology/">Tech</a></li>
<li><a href="http://www.huffingtonpost.com/arts/">Arts</a></li>
<li><a href="http://www.huffingtonpost.com/food/">Food</a></li>
</ul>
</section>
</div>
</menu>
</div>
</li>
<li class="world toplevel" data-beacon='{"p":{"lnid":"world"}}' >
<a class="toplevel-a" href="http://www.huffingtonpost.com/theworldpost/" tabindex="4" class="link">WorldPost</a>
<!-- dropdown for this item -->
<div class="menu-container">
<menu class="group">
<!-- left colum -->
<section class="more-stories trending" >
<ul>
<li data-id="6465374" >
<article>
<a href="http://www.huffingtonpost.com/2015/01/13/isis_n_6465374.html?ir=WorldPost">New ISIS Video Shows Child Soldier 'Executing Russian Spies'</a>
<a data-anchor="#comments" class="comments" href="http://www.huffingtonpost.com/2015/01/13/isis_n_6465374.html?ir=WorldPost#comments">80</a>
</article>
</li>
<li data-id="6466830" >
<article>
<a href="http://www.huffingtonpost.com/2015/01/13/more-threats-charlie-hebdo_n_6466830.html?ir=WorldPost">More Threats After New Charlie Hebdo Cover Revealed</a>
<a data-anchor="#comments" class="comments" href="http://www.huffingtonpost.com/2015/01/13/more-threats-charlie-hebdo_n_6466830.html?ir=WorldPost#comments">102</a>
</article>
</li>
<li data-id="6469726" >
<article>
<a href="http://www.huffingtonpost.com/2015/01/14/france-terror-crackdown_n_6469726.html?ir=WorldPost">France Arrests 54 For Defending Terror; Announces Crackdown</a>
<a data-anchor="#comments" class="comments" href="http://www.huffingtonpost.com/2015/01/14/france-terror-crackdown_n_6469726.html?ir=WorldPost#comments">410</a>
</article>
</li>
<li data-id="6472480" >
<article>
<a href="http://www.huffingtonpost.com/2015/01/14/dieudonne-trial-charlie-hebdo_n_6472480.html?ir=WorldPost">French Comedian To Stand Trial Over Facebook Post On Paris Attacks</a>
<a data-anchor="#comments" class="comments" href="http://www.huffingtonpost.com/2015/01/14/dieudonne-trial-charlie-hebdo_n_6472480.html?ir=WorldPost#comments">0</a>
</article>
</li>
<li data-id="6465872" >
<article>
<a href="http://www.huffingtonpost.com/2015/01/13/lilian-lepere-charlie-hebdo_n_6465872.html?ir=WorldPost">Hidden Under A Sink, This Man Had A Very Close Call With The Charlie Hebdo Gunmen</a>
<a data-anchor="#comments" class="comments" href="http://www.huffingtonpost.com/2015/01/13/lilian-lepere-charlie-hebdo_n_6465872.html?ir=WorldPost#comments">6</a>
</article>
</li>
</ul>
<!-- ads_top_nav_edit_promo -->
<a class="goto" href="http://www.huffingtonpost.com/theworldpost/">Go to WorldPost</a>
</section>
<!-- right column -->
<div class="more-vertical">
<section class="more-in">
<strong>More in WorldPost</strong>
<ul data-beacon='{"p":{"lnid":"more_in"}}' >
<li><a href="http://www.huffingtonpost.com/news/foreign-affairs/">Foreign Affairs</a></li>
<li><a href="http://www.huffingtonpost.com/news/drug-war">Drug War</a></li>
<li><a href="http://www.huffingtonpost.com/news/afghanistan-war-blog/">Afghanistan</a></li>
<li><a href="http://www.huffingtonpost.com/news/syria/">Syria Conflict</a></li>
<li><a href="http://videos.huffingtonpost.com/world">World Videos</a></li>
</ul>
</section>
<section class="might-like">
<strong>You Might Also Like</strong>
<ul data-beacon='{"p":{"lnid":"like_list"}}' >
<li><a href="http://www.huffingtonpost.com/travel/">Travel</a></li>
<li><a href="http://www.huffingtonpost.com/politics/">Politics</a></li>
<li><a href="http://www.huffingtonpost.com/business/">Business</a></li>
<li><a href="http://www.huffingtonpost.com/technology/">Tech</a></li>
<li><a href="http://www.huffingtonpost.com/religion/">Religion</a></li>
</ul>
</section>
</div>
</menu>
</div>
</li>
<li class="technology toplevel" data-beacon='{"p":{"lnid":"technology"}}' >
<a class="toplevel-a" href="http://www.huffingtonpost.com/technology/" tabindex="5" class="link">Tech</a>
<!-- dropdown for this item -->
<div class="menu-container">
<menu class="group">
<!-- left colum -->
<section class="more-stories trending" >
<ul>
<li data-id="6466488" >
<article>
<a href="http://www.huffingtonpost.com/2015/01/14/google-translate-update_n_6466488.html?ir=Technology">Google Translate Update May Save You A Lot Of Money</a>
<a data-anchor="#comments" class="comments" href="http://www.huffingtonpost.com/2015/01/14/google-translate-update_n_6466488.html?ir=Technology#comments">13</a>
</article>
</li>
<li data-id="6464458" >
<article>
<a href="http://www.huffingtonpost.com/2015/01/14/internet-of-things_n_6464458.html?ir=Technology">Our Obsession With Convenience Could Get Scary</a>
<a data-anchor="#comments" class="comments" href="http://www.huffingtonpost.com/2015/01/14/internet-of-things_n_6464458.html?ir=Technology#comments">53</a>
</article>
</li>
<li data-id="6466890" >
<article>
<a href="http://www.huffingtonpost.com/2015/01/13/hacker-pentagon-twitter_n_6466890.html?ir=Technology">British Hacker Linked To Attack On Pentagon Twitter Feed</a>
<a data-anchor="#comments" class="comments" href="http://www.huffingtonpost.com/2015/01/13/hacker-pentagon-twitter_n_6466890.html?ir=Technology#comments">3</a>
</article>
</li>
<li data-id="6459068" >
<article>
<a href="http://www.huffingtonpost.com/2015/01/12/smuggle-iphone-china-hong-kong_n_6459068.html?ir=Technology">PHOTOS: How Not To Smuggle 94 iPhones</a>
<a data-anchor="#comments" class="comments" href="http://www.huffingtonpost.com/2015/01/12/smuggle-iphone-china-hong-kong_n_6459068.html?ir=Technology#comments">25</a>
</article>
</li>
<li data-id="6463488" >
<article>
<a href="http://www.huffingtonpost.com/2015/01/14/strangest-wikipedia-entries_n_6463488.html?ir=Technology">The 49 Most Entertaining Wikipedia Entries Ever Created</a>
<a data-anchor="#comments" class="comments" href="http://www.huffingtonpost.com/2015/01/14/strangest-wikipedia-entries_n_6463488.html?ir=Technology#comments">0</a>
</article>
</li>
</ul>
<!-- ads_top_nav_edit_promo -->
<a class="goto" href="http://www.huffingtonpost.com/technology/">Go to Tech</a>
</section>
<!-- right column -->
<div class="more-vertical">
<section class="more-in">
<strong>More in Tech</strong>
<ul data-beacon='{"p":{"lnid":"more_in"}}' >
<li><a href="http://www.huffingtonpost.com/tedweekends/">TEDWeekends</a></li>
<li><a href="http://www.huffingtonpost.com/news/social-media/">Social Media</a></li>
</ul>
</section>
<section class="might-like">
<strong>You Might Also Like</strong>
<ul data-beacon='{"p":{"lnid":"like_list"}}' >
<li><a href="http://www.huffingtonpost.com/small-business/">Small Biz</a></li>
<li><a href="http://www.huffingtonpost.com/green/">Green</a></li>
<li><a href="http://www.huffingtonpost.com/science/">Science</a></li>
<li><a href="http://www.huffingtonpost.com/new-york/">NY</a></li>
<li><a href="http://www.huffingtonpost.com/san-francisco/">SF</a></li>
<li><a href="http://www.huffingtonpost.com/news/smarter-ideas/">Smarter Ideas</a></li>
<li><a href="http://www.techcrunch.com">TechCrunch</a></li>
<li><a href="http://www.engadget.com">Engadget</a></li>
</ul>
</section>
</div>
</menu>
</div>
</li>