forked from codelucas/newspaper
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbusinessweek.com2.html
More file actions
1171 lines (1053 loc) · 71.2 KB
/
Copy pathbusinessweek.com2.html
File metadata and controls
1171 lines (1053 loc) · 71.2 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 7]> <html class="ie6 no-js light_layout" lang="en"> <![endif]-->
<!--[if IE 7]> <html class="ie7 no-js light_layout" lang="en"> <![endif]-->
<!--[if IE 8]> <html class="ie8 no-js light_layout" lang="en"> <![endif]-->
<!--[if gt IE 8]><!-->
<html class='no-js light_layout' lang='en'>
<!--<![endif]-->
<head>
<title>Cuomo's Cap on Hedge Funds in Pensions Won't Solve the Real Problem - Businessweek</title>
<meta content='BW' name='source'>
<meta content='article' name='content_type'>
<meta content='It just avoids making the existing underfunding worse ' name='description'>
<meta content='Allison Schrager' name='author'>
<meta content='markets_and_finance' name='channel'>
<meta content='Investing' name='department'>
<meta content='2014-12-22T09:54:09-05:00' name='pub_date'>
<meta content="Andrew Cuomo,hedge fund caps,Investing,pension funds,Retirement" name="keywords" />
<meta content="Andrew Cuomo,hedge fund caps,Investing,pension funds,Retirement" name="news_keywords" />
<link href="http://www.businessweek.com/articles/2014-12-22/cuomos-cap-on-hedge-funds-in-pensions-wont-solve-the-real-problem" rel="canonical" />
<meta content="L7zxW9ChzqzPwbLIMzRbGzhn-Mly9AIDiF64J6DgQl0" name="google-site-verification" />
<meta content="dEHOKZR1s6GmOfGrPHHJFrXJwDoZXW6BjpnhmxPzRCE" name="google-site-verification" />
<meta content="nm_Na3kYYwG-eQKKUQs9A07nqn-GlhmC2qMzvutTDRA" name="google-site-verification" />
<meta charset='utf-8'>
<meta content='IE=edge,chrome=1' http-equiv='X-UA-Compatible'>
<script type="text/javascript">window.NREUM||(NREUM={});NREUM.info={"beacon":"beacon-1.newrelic.com","errorBeacon":"bam.nr-data.net","licenseKey":"b220098848","applicationID":"138689","transactionName":"c1hbFURcXFsGRRYDRkReVg1TQB9EC1hO","queueTime":0,"applicationTime":481,"ttGuid":"","agentToken":null,"agent":"js-agent.newrelic.com/nr-476.min.js"}</script>
<script type="text/javascript">(window.NREUM||(NREUM={})).loader_config={xpid:"VgMEUVJACQAIUllb"};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>
<link href="http://static.btrd.net/assets/favicon.ico" rel="shortcut icon" type="image/vnd.microsoft.icon" />
<link href="http://static.btrd.net/assets/BW-bubble.png" rel="apple-touch-icon" type="image/png" />
<link href="http://www.businessweek.com/feeds/homepage.rss" rel="alternate" title="Businessweek.com Top News RSS" type="application/rss+xml" />
<!-- * font definitions */ -->
<style>
@font-face {
font-family: 'BloombergLBold';
src: url("/assets/type/bloombergl_heavy.eot?#iefix") format('embedded-opentype'),
url('/assets/type/bloombergl_heavy.ttf') format('truetype');
font-weight: bold;
font-style: normal;
}
@font-face {
font-family:'BWHaasHead';
src: url('/assets/type/hinted/haas/bwhaasgroteskhead-95black.eot?#iefix') format('eot'),
url('/assets/type/hinted/haas/bwhaasgroteskhead-95black.woff') format('woff'),
url('/assets/type/haas/bwhaasgroteskhead-95black.ttf') format('truetype');
font-style: normal;
font-weight: 700;
font-stretch: normal;
}
@font-face {
font-family:'BWHaasHead75Bold';
src: url('/assets/type/hinted/haas75/bwhaasgroteskhead-75bold.eot?#iefix') format('eot'),
url('/assets/type/hinted/haas75/bwhaasgroteskhead-75bold.woff') format('woff'),
url('/assets/type/haas75/bwhaasgrotesktext-75bold.ttf') format('truetype');
font-style: normal;
font-weight: 700;
font-stretch: normal;
}
@font-face {
font-family:'BWHaasRegular';
src: url('/assets/web_fonts/bwhaasgroteskhead-65medium.eot?#iefix') format('eot'),
url('/assets/web_fonts/bwhaasgroteskhead-65medium.woff') format('woff'),
url('/assets/web_fonts/bwhaasgrotesktext-65medium.ttf') format('truetype');
font-style: normal;
font-weight: 700;
font-stretch: normal;
}
</style>
<link href="http://static.btrd.net/assets/application-8dbe4f401e91d915a219d2496d6923c5.css" media="screen" rel="stylesheet" type="text/css" />
<link href="http://static.btrd.net/onlineopinionV5/oo_style.css" media="screen" rel="stylesheet" type="text/css" />
<link href="http://static.btrd.net/assets/content-b0162cf4173963330e4669cb4bad8a69.css" media="screen" rel="stylesheet" type="text/css" />
<meta content="Businessweek.com" property="og:site_name" />
<meta content="article" property="og:type" />
<meta content="Cuomo's Cap on Hedge Funds in Pensions Solves Only Part of the Problem" property="og:title" />
<meta content="It just avoids making the existing underfunding worse " property="og:description" />
<meta content="http://images.bwbx.io/cms/2014-12-22/1222_cuomo__970.jpg" property="og:image" />
<meta content="summary" name="twitter:card" />
<meta content="@BW" name="twitter:site" />
<!-- BEGIN Krux Control Tag -->
<script src="http://static.btrd.net/assets/krux-2219e2e7b21a9027972af37eaeb5ee88.js" type="text/javascript"></script>
<script type='application/ld+json'>
{
"@context": "http://schema.org",
"@type": "NewsArticle",
"headline": "Cuomo's Cap on Hedge Funds in Pensions Solves Only Part of the Problem",
"url": "http://www.businessweek.com/articles/2014-12-22/cuomos-cap-on-hedge-funds-in-pensions-wont-solve-the-real-problem",
"thumbnailUrl": "http://images.bwbx.io/cms/2014-12-22/1222_cuomo__970-630x420.jpg",
"dateCreated": "2014-12-22T14:54:09Z",
"articleSection": "Markets & Finance",
"creator": "Allison Schrager",
"keywords": "Finance &amp; Markets, Investing, Policy, Politics, Politics & Policy, story"
}
</script>
<script>
var AVAILABLE_BUCKETS = []
</script>
<script src="http://static.btrd.net/assets/buckets-d84e1f4dcb5b5442542ec0a4b3fb1865.js" type="text/javascript"></script>
<meta content='width=1000px' name='viewport'>
<script>
var googletag = googletag || {};
googletag.cmd = googletag.cmd || [];
(function() {
var gads = document.createElement("script");
gads.async = true;
gads.type = "text/javascript";
var useSSL = "https:" == document.location.protocol;
gads.src = (useSSL ? "https:" : "http:") + "//www.googletagservices.com/tag/js/gpt.js";
var node =document.getElementsByTagName("script")[0];
node.parentNode.insertBefore(gads, node);
})();
</script>
<script src="http://static.btrd.net/assets/jquery.dfp.gpt.logger.override-33aaf061a2d76891ddeea42a7aa62b43.js" type="text/javascript"></script>
<script>
var ROOT_URL = "http://www.businessweek.com/";
var FACEBOOK_APP_KEY = "381515401910729";
var FACEBOOK_APP_NS = "bw_prod";
var COOKIE_DOMAIN = "businessweek.com";
var SECURE_DOMAIN_URL = "https://secure.businessweek.com";
var STICKY_NEWS_ENGINE= "none";
var VIDEO_AD_PREFIX = "http://ad.doubleclick.net/N5262/pfadx/";
var VIDEO_SITE = "mgh.bw.video";
var VIDEO_SUB_SITE = "/general";
var DOUBLECLICK_URL_PREFIX = "http://ad.doubleclick.net/N5262";
var AD_SITE = "bw";
var AD_LAYOUT_DESC = "article story channel markets_and_finance";
var AD_SUB_SITE = ".marketsfinance/investing";
if (AD_LAYOUT_DESC.indexOf("video") >= 0){
AD_SITE = VIDEO_SITE;
AD_SUB_SITE = VIDEO_SUB_SITE;
}
var AD_ZONE = ""; // TODO: this is used to tag "department" pages
var AD_KEYWORD = ""; //TODO: This is used on article and department index pages
var AD_URL = (window.location.pathname == undefined) ? "/" : window.location.pathname.replace(/\/?$/, '/');
var YIELDEX = true;
var AD_INTERVAL_TO = 450;
var AD_DEPT_TRACKING = false; //Temporary flag to be removed when the time is right
var VIDEO_AD_SIZE = "1x1";
var VIDEO_AD_YIELD_EX = (YIELDEX) ? '"u=sz='+VIDEO_AD_SIZE+'|' + ';' : '';
var RANDOM_NUMBER = ("1"+(""+Math.random()).substring(2,11));
var VIDEO_AD_SUFFIX = ";sz="+VIDEO_AD_SIZE+";tile=15;tp_video=null;dcmt=text/html;"+encodeURIComponent(VIDEO_AD_YIELD_EX)+"ord="+RANDOM_NUMBER+";";
var TILE_NUMBER = 1;
var URL_HASH = window.location.hash.replace(/#video=/, '');
var google_ad_channel = "6537084077 3231123392";
var discus_car, lead_module_interval;
var NEGATIVE_AD_CATEGORIES = "";
var AD_SLOTS = {};
var GPT_ADS_ENABLED = true;
var GPT_NETWORK_ID = 5262;
var SHOW_NATIVE = "true";
var NATIVE_PROPERTY_ID = "NA-BUSIWEEKCOM-11236051";
</script>
<script>
if (!GPT_ADS_ENABLED) {
var COMPANION_AD_SITE = AD_SITE + AD_SUB_SITE; //these create the video companion ads
googletag.cmd.push(function() {
googletag.defineSlot(COMPANION_AD_SITE, [728, 90], 'header-companion-ad').addService(googletag.companionAds()).addService(googletag.pubads());
googletag.defineSlot(COMPANION_AD_SITE, [300, 250], 'right-companion-ad').addService(googletag.companionAds()).addService(googletag.pubads());
googletag.defineSlot(COMPANION_AD_SITE, [728, 90], 'bottom-companion-ad').addService(googletag.companionAds()).addService(googletag.pubads());
googletag.companionAds().setRefreshUnfilledSlots(true);
//googletag.pubads().disableInitialLoad();
googletag.enableServices();
});
}
</script>
</head>
<body class='article story channel markets_and_finance' data-action='show' data-controller='articles' itemscope itemtype='http://schema.org/WebPage'>
<div id='fb-root'></div>
<div class='clearfix' id='container'>
<div class='clearfix' id='sign_in'>
<div class='sign_in_frame'>
<span class='login facebook'>
Sign in with Facebook
<span class='facebook_button'>
<a href="#"><span class='inline_icon icons-connect_with_facebook facebook_login'></span>
</a></span>
</span>
<span class='login'>Or use your Businessweek account</span>
<div class='login_form'>
<form accept-charset="UTF-8" action="https://secure.businessweek.com/login" class="new_user_form" id="new_user_form" method="post"><div style="margin:0;padding:0;display:inline"><input name="utf8" type="hidden" value="✓" /><input name="authenticity_token" type="hidden" value="3Gfw5VxQdubsDhAj8fChGKHHggBBwKiyNk/oijz7xTs=" /></div>
<label class="for_email" for="user_form_email">Email</label>
<input class="" id="user_form_email" maxlength="100" name="user_form[email]" size="100" type="text" />
<label class="password" for="user_form_password">Password</label>
<a href="https://secure.businessweek.com/password/forgot" class="forgot_password">Forgot password?</a>
<input class="" id="user_form_password" maxlength="20" name="user_form[password]" size="20" type="password" />
<input name="user_form[remember_me]" type="hidden" value="0" /><input id="user_form_remember_me" name="user_form[remember_me]" type="checkbox" value="1" />
<label class="checkbox_label" for="user_form_remember_me">Remember me</label>
<input class="button" name="commit" type="submit" value="Sign In" />
</form>
</div>
<p class='bloomberg_user'>
Already a Bloomberg.com user?
</p>
<p>Sign in with the same account.</p>
<p class='other_options'>
Don't have an account?
<a href="https://secure.businessweek.com/register">Sign up.</a>
</p>
<p class='account-help'>
<a href="https://secure.businessweek.com/users/forgot-account">Help! I can't access my account.</a>
</p>
</div>
</div>
<div class='branding_hat'></div>
<div id='consent-track' style='display:none;'>
This site uses cookies. By continuing to browse the site you are agreeing to our use of cookies.
<a class='close-consent-track' href="#closeConsentTrack">X</a>
<span id='consent-track-image'>
<script src='http://consent.truste.com/notice?domain=businessweek.com&c=consent-track-image' type='text/javascript'></script>
</span>
</div>
<div class='clearfix' id='header'>
<div class='inner_wrapper'>
<div id='logo'>
<a href="http://www.businessweek.com/" class="ir" id="home_link">Bloomberg Businessweek</a>
<h2 id='channel_name'>
<a href="http://www.businessweek.com/markets-and-finance">Markets & Finance</a>
</h2>
</div>
<div id='promo'>
<span class='house_ad non_blank_ad'>
<div class='gpt_ads_slot' id='circ_header'>
<div class='gpt_ad_container' data-gpt-size='[[200, 92], [1, 1]]' data-original-position='circ_header' data-position='circ_header' data-pt='t2' data-size='200x92,1x1' data-tile='2' data-tz='circ_header'></div>
</div>
</span>
</div>
<div id='search'>
<div id='sub_sales_header'>
<a href="https://subscribe.businessweek.com/servlet/OrdersGateway?cds_mag_code=BWK&cds_page_id=160281" class="sub_sales"><div class='sub_sales-cover'>
<img alt="The Good Business Issue" src="http://images.bwbx.io/cms/2014-12-23/bbw_good_business_issue_122914.jpg" width="75px" />
</div>
<div class='sub_sales-background'>
<div class='sub_sales-content'>
<span class='sub_sales-offer'>
LIMITED-TIME OFFER
</span>
<span class='sub_sales-subscribe'>
SUBSCRIBE NOW
</span>
</div>
</div>
</a>
</div>
<form action='http://www.businessweek.com/search' method='get'>
<div class='with_search_icon'>
<input class='toggle_text' id='search_input' name='q' title='Search' type='text' value='Search'>
</div>
</form>
<div id='social'>
<div class='fb-like' data-font='arial' data-href="http://www.facebook.com/bloombergbusinessweek" data-layout='button_count' data-send='false' data-show-faces='false'></div>
<a class='twitter-follow-button' data-lang='en' data-show-count='false' data-show-screen-name='true' href="http://twitter.com/BW"></a>
</div>
</div>
</div>
</div>
<div id='global_nav'>
<div class='inner_wrapper'>
<ul class='navigation clearfix'>
<li class='global_economics has_sub_menu tracked'>
<a href="http://www.businessweek.com/global-economics" class="channel_link">Global Economics</a>
</li>
<li class='companies_and_industries has_sub_menu tracked'>
<a href="http://www.businessweek.com/companies-and-industries" class="channel_link">Companies & Industries</a>
</li>
<li class='politics_and_policy has_sub_menu tracked'>
<a href="http://www.businessweek.com/politics-and-policy" class="channel_link">Politics & Policy</a>
</li>
<li class='technology has_sub_menu tracked'>
<a href="http://www.businessweek.com/technology" class="channel_link">Technology</a>
</li>
<li class='markets_and_finance has_sub_menu tracked'>
<a href="http://www.businessweek.com/markets-and-finance" class="channel_link">Markets & Finance</a>
</li>
<li class='innovation_and_design has_sub_menu tracked'>
<a href="http://www.businessweek.com/innovation-and-design" class="channel_link">Innovation & Design</a>
</li>
<li class='lifestyle has_sub_menu tracked'>
<a href="http://www.businessweek.com/lifestyle" class="channel_link">Lifestyle</a>
</li>
<li class='business_schools has_sub_menu tracked'>
<a href="http://www.businessweek.com/business-schools" class="channel_link">Business Schools</a>
</li>
<li class='small_business has_sub_menu tracked'>
<a href="http://www.businessweek.com/small-business" class="channel_link">Small Business</a>
</li>
<li class='media has_sub_menu tracked'>
<a href="http://www.businessweek.com/media" class="channel_link">Video & Multimedia</a>
</li>
</ul>
</div>
</div>
<span class='banner_ad top_banner_ad companion_replace'>
<div class='gpt_ads_slot' id='leader_board'>
<div class='gpt_ad_container' data-gpt-size='[[728, 90], [970, 66], [1, 1]]' data-original-position='leader_board' data-position='top' data-pt='t2' data-size='728x90,970x66,1x1' data-tile='3' data-tz='top'></div>
</div>
</span>
<div id='flash'>
</div>
<div class='column_container clearfix'>
<div class='column primary'>
<div id='content'>
<article class='businessweek' itemscope itemtype='http://schema.org/Article'>
<div class='department_text'><h3>Investing</h3></div>
<h1 class='headline' itemprop='name headline'>Cuomo's Cap on Hedge Funds in Pensions Solves Only Part of the Problem</h1>
<div id='authorial'>
<span class='byline'>
<span class='byline-text' itemscope itemtype='http://schema.org/Person'>
By <a href="http://www.businessweek.com/authors/54947-allison-schrager" itemprop="name" rel="author">Allison Schrager</a>
</span>
</span>
<time class='byline-text' datetime='2014-12-22T09:54:09-05:00' itemprop='datePublished'>
December 22, 2014
</time>
</div>
<hr>
<div class='share_buttons' data-headline="Cuomo's Cap on Hedge Funds in Pensions Solves Only Part of the Problem" data-host='http://analytics.bloomberg.com/images/analytics-bw/dot1.gif' data-id='5ca70b7a-86e6-11e4-9c0e-d8d385601e40' data-ping-uri='/,/markets-and-finance,/markets-and-finance/investing,/authors/54947-allison-schrager' data-pub-date='2014-12-22 09:54:09 -0500' data-summary='It just avoids making the existing underfunding worse ' data-type='story' data-uri='http://www.businessweek.com/articles/2014-12-22/cuomos-cap-on-hedge-funds-in-pensions-wont-solve-the-real-problem'>
<span class='clickable share_button inline_icon icons-facebook_share tracked' data-action-type='Share via Facebook' data-actions='click' data-button-type='facebook' data-category='Sharing' data-label='/articles/2014-12-22/cuomos-cap-on-hedge-funds-in-pensions-wont-solve-the-real-problem' title='Share on Facebook'></span>
<span class='clickable share_button inline_icon icons-twitter_share tracked' data-action-type='Share via Twitter' data-actions='click' data-button-type='twitter' data-category='Sharing' data-label='/articles/2014-12-22/cuomos-cap-on-hedge-funds-in-pensions-wont-solve-the-real-problem' title='Share on Twitter'></span>
<span class='clickable share_button inline_icon icons-linked_in_share tracked' data-action-type='Share via LinkedIn' data-actions='click' data-button-type='linkedin' data-category='Sharing' data-label='/articles/2014-12-22/cuomos-cap-on-hedge-funds-in-pensions-wont-solve-the-real-problem' title='Share on LinkedIn'></span>
<span class='clickable share_button inline_icon icons-gplus_share tracked' data-action-type='Share via Google+' data-actions='click' data-button-type='google_plus' data-category='Sharing' data-label='/articles/2014-12-22/cuomos-cap-on-hedge-funds-in-pensions-wont-solve-the-real-problem' title='Share on Google+'></span>
<a class='print_button inline_icon icons-print tracked' data-action-type='Print' data-actions='click' data-category='Sharing' data-label='/articles/2014-12-22/cuomos-cap-on-hedge-funds-in-pensions-wont-solve-the-real-problem' href="http://www.businessweek.com/printer/articles/241148-cuomos-cap-on-hedge-funds-in-pensions-solves-only-part-of-the-problem" rel='nofollow' title='Print'></a>
<span class='clickable kindleWidget inline_icon icons-send_to_kindle tracked' data-action-type='Sent to Kindle' data-actions='click' data-button-type='kindle' data-category='Sharing' title='Share on Kindle'></span>
</div>
<div id="lead_graphic"><img alt="Cuomo's Cap on Hedge Funds in Pensions Solves Only Part of the Problem" data-image-id="437919752" height="420" src="http://images.bwbx.io/cms/2014-12-22/1222_cuomo__970-630x420.jpg" title="Cuomo's Cap on Hedge Funds in Pensions Solves Only Part of the Problem" width="630" /><p class="photo_credit">Photographer: Andrew Burton/Getty Images</p></div>
<div id='article_body' itemprop='articleBody'>
<p>New York Governor Andrew Cuomo vetoed a <a href="http://www.businessweek.com/news/2014-12-18/cuomo-vetoes-bill-allowing-pensions-to-add-more-to-hedge-funds">bill last week</a> that would have allowed the New York state, city, and teachers’ pension funds to increase their investment in hedge funds from 25 percent to 30 percent of fund assets. He cited the high fees and risk associated with hedge funds. The now-dead bill contained <a href="http://assembly.state.ny.us/leg/?default_fld=&bn=A09643&term=2013&Summary=Y&Memo=Y">a memo</a> justifying its proposed increase:</p>
<blockquote><p>“The portion of the NYCRS [New York City Retirement System] portfolios allocated to public equities is much more volatile than the investments allocated to the basket. As a result, a swing in public markets can push NYCRS dangerously close to the investment cap with no new investments.”</p></blockquote>
<p>That’s a terrible reason to invest in hedge funds. Stocks are supposed to be riskier; that’s why they normally provide higher returns. If the investment board can’t handle volatility, it should invest in safer, lower-yielding assets—and while that may describe some hedge funds, cheaper options are out there. Hedge funds typically charge 2 percent of assets, plus 20 percent of gains, and <a href="http://www.businessweek.com/articles/2013-07-11/why-hedge-funds-glory-days-may-be-gone-for-good">rarely outperform the stock market</a>. The figure below, from an <a href="http://www.businessweek.com/articles/2013-07-11/why-hedge-funds-glory-days-may-be-gone-for-good">article last year</a>, plots an index of hedge fund strategy performance compared with the S&P 500 index.</p>
<p><span class="inline_image left"><img src="http://images.bwbx.io/cms/2014-12-21/BW29_OR_hedge_605inline1.jpg" alt=""></span></p>
<p>Underperformance is why such states as California are pulling out of hedge funds (though they are piling into risky alternatives, <a href="http://www.businessweek.com/articles/2014-09-23/are-public-pensions-inflating-a-venture-capital-bubble">such as private equity)</a>. The sentiment is not uniform, though, and <a href="http://www.bloomberg.com/news/2014-09-17/ohio-illinois-sticking-with-hedge-funds-as-calpers-flees.html">other states</a>, including New Jersey, Ohio, New Mexico, and Illinois, are sticking with or increasing their hedge fund investment.</p>
<p>Cuomo was right to veto the bill. Investing in hedge funds is extra risky for New York, which is also home to a large share of the hedge fund industry. Employees in the finance industry pay a large share of the <a href="http://www.osc.state.ny.us/press/releases/mar14/031214.htm">state’s tax revenue</a>. That would seem to give politicians an incentive to increase their hedge fund investment. But it’s a dangerous strategy. If the hedge fund industry has a bad year, the state would take a twofold hit: Pension fund assets would tank, along with the tax revenue from finance industry professionals whose compensation depends on performance.</p>
<p>Like all states, New York’s pensions <a href="http://www.bloomberg.com/visual-data/best-and-worst//most-underfunded-pension-plans-states">are underfunded</a>. In 2013, its assets could cover only 87.3 percent of pension promises, a figure that assumes superior investment performance each and every year. More prudent measures estimate <a href="http://papers.ssrn.com/sol3/papers.cfm?abstract_id=1352608">a larger deficit.</a> Making up the difference will require either outstanding, consistent investment performance or more contributions from state employees and taxpayers. The governor made a good choice by realizing that investing in hedge funds isn’t the answer. He has made less progress on how to fill in the gap reliably.</p>
<div id='related_items'><!-- / For rendering related links inside the body of the article -->
<div class='related_item tracked' data-action-type='Feature Template' data-actions='click' data-category='Inline Related Links' data-label='Position: 0'>
<a href="http://www.businessweek.com/articles/2014-12-22/the-real-risk-of-pension-plans-they-give-retirees-false-security"><span class='related_item_label'>Story: </span>The Real Risk of Pension Plans: They Give Retirees False Security</a>
</div>
<div class='related_item tracked' data-action-type='Feature Template' data-actions='click' data-category='Inline Related Links' data-label='Position: 0'>
<a href="http://www.businessweek.com/articles/2014-10-17/the-hidden-risk-in-the-worlds-best-pension-system"><span class='related_item_label'>Story: </span>The Hidden Risk in the World’s Best Pension System</a>
</div>
<div class='related_item tracked' data-action-type='Feature Template' data-actions='click' data-category='Inline Related Links' data-label='Position: 1'>
<a href="http://www.businessweek.com/articles/2014-04-29/pension-funds-and-catastrophe-bonds-what-could-possibly-go-wrong"><span class='related_item_label'>Story: </span>Pension Funds and Catastrophe Bonds: What Could Possibly Go Wrong?</a>
</div>
</div>
</div>
<div class='author_bio_container'>
<div class='author_short_bios'>
<a href="mailto:allison.schrager@gmail.com">Schrager</a> is an economist and writer in New York City. Follow her on Twitter: <a href="https://twitter.com/allisonschrager">@AllisonSchrager</a>.
</div>
</div>
<hr>
<div class='sponsored_holder'>
<div class='sponsored_module'>
<div class='sponsored_container sponsor_spot' data-ad-label='nativewell3' data-ad-position='nativewell3' data-ad-server='dfp' data-ad-size='2x1' data-property-id='NA-BUSIWEEKCOM-11236051' data-target-location='.sponsored_container'></div>
</div>
</div>
<div class='share_buttons' data-headline="Cuomo's Cap on Hedge Funds in Pensions Solves Only Part of the Problem" data-host='http://analytics.bloomberg.com/images/analytics-bw/dot1.gif' data-id='5ca70b7a-86e6-11e4-9c0e-d8d385601e40' data-ping-uri='/,/markets-and-finance,/markets-and-finance/investing,/authors/54947-allison-schrager' data-pub-date='2014-12-22 09:54:09 -0500' data-summary='It just avoids making the existing underfunding worse ' data-type='story' data-uri='http://www.businessweek.com/articles/2014-12-22/cuomos-cap-on-hedge-funds-in-pensions-wont-solve-the-real-problem'>
<span class='clickable share_button inline_icon icons-facebook_share tracked' data-action-type='Share via Facebook' data-actions='click' data-button-type='facebook' data-category='Sharing' data-label='/articles/2014-12-22/cuomos-cap-on-hedge-funds-in-pensions-wont-solve-the-real-problem' title='Share on Facebook'></span>
<span class='clickable share_button inline_icon icons-twitter_share tracked' data-action-type='Share via Twitter' data-actions='click' data-button-type='twitter' data-category='Sharing' data-label='/articles/2014-12-22/cuomos-cap-on-hedge-funds-in-pensions-wont-solve-the-real-problem' title='Share on Twitter'></span>
<span class='clickable share_button inline_icon icons-linked_in_share tracked' data-action-type='Share via LinkedIn' data-actions='click' data-button-type='linkedin' data-category='Sharing' data-label='/articles/2014-12-22/cuomos-cap-on-hedge-funds-in-pensions-wont-solve-the-real-problem' title='Share on LinkedIn'></span>
<span class='clickable share_button inline_icon icons-gplus_share tracked' data-action-type='Share via Google+' data-actions='click' data-button-type='google_plus' data-category='Sharing' data-label='/articles/2014-12-22/cuomos-cap-on-hedge-funds-in-pensions-wont-solve-the-real-problem' title='Share on Google+'></span>
<a class='print_button inline_icon icons-print tracked' data-action-type='Print' data-actions='click' data-category='Sharing' data-label='/articles/2014-12-22/cuomos-cap-on-hedge-funds-in-pensions-wont-solve-the-real-problem' href="http://www.businessweek.com/printer/articles/241148-cuomos-cap-on-hedge-funds-in-pensions-solves-only-part-of-the-problem" rel='nofollow' title='Print'></a>
<span class='clickable kindleWidget inline_icon icons-send_to_kindle tracked' data-action-type='Sent to Kindle' data-actions='click' data-button-type='kindle' data-category='Sharing' title='Share on Kindle'></span>
</div>
</article>
<div class='taboola_bottom' id='taboola_wrapper'>
<div id='taboola-below-main-column'></div>
<div id='taboola-bmc-mix'></div>
</div>
<a href="https://subscribe.businessweek.com/servlet/OrdersGateway?cds_mag_code=BWK&cds_page_id=160309" class="sub_sales"><div class='sub_sales-cover'>
<img alt="The Good Business Issue" src="http://images.bwbx.io/cms/2014-12-23/bbw_good_business_issue_122914.jpg" width="75px" />
</div>
<div class='sub_sales-background'>
<div class='sub_sales-content'>
<span class='sub_sales-offer'>
LIMITED-TIME OFFER
</span>
<span class='sub_sales-subscribe'>
SUBSCRIBE NOW
</span>
</div>
</div>
</a>
<div id='disqus_thread'></div>
<div class='slideout_container' data-show-slideout?='yes'></div>
</div>
</div>
<div class='column rail'>
<div class='module clearfix tabbed headlines '>
<h3>
<a href="http://www.businessweek.com/feeds/most-popular.rss">
<span class='timestamp rss'>
Feed
<span class='inline_icon icons-rss'></span>
</span>
</a>
Most Popular
</h3>
<ul class='tabs_controller'>
<li class='tracked active not_last' data-action-type='Tab Switch' data-actions='click' data-category='Tabbed Module' data-label='Read'>
<a class='active' href="#Read-Tab">
Read
</a>
</li>
<li class='tracked not_last' data-action-type='Tab Switch' data-actions='click' data-category='Tabbed Module' data-label='Shared'>
<a class='' href="#Shared-Tab">
Shared
</a>
</li>
<li class='tracked last' data-action-type='Tab Switch' data-actions='click' data-category='Tabbed Module' data-label='Discussed'>
<a class='' href="#Discussed-Tab">
Discussed
</a>
</li>
</ul>
<div class='active tab_panel'>
<a name='Read-Tab'></a>
<ul>
<li>
<a href="http://www.businessweek.com/articles/2014-12-31/united-and-orbitz-lawsuit-against-skiplaggedcom-raises-ethical-questions#r=read">Is It OK to Cheat Airlines if It Saves You Money?</a>
</li>
<li>
<a href="http://www.businessweek.com/articles/2015-01-02/ces-2015-this-years-tech-anxiety-is-ending-up-like-tv-makers#r=read">This Year’s CES Anxiety: Ending Up Like TV Makers</a>
</li>
<li>
<a href="http://www.businessweek.com/articles/2015-01-02/french-economist-thomas-piketty-faces-trial-by-peers#r=read">French Economist Thomas Piketty Faces Trial by Peers</a>
</li>
<li>
<a href="http://www.businessweek.com/articles/2015-01-02/why-you-should-care-about-greece-again#r=read">Why You Should Care About Greece Again</a>
</li>
<li>
<a href="http://www.businessweek.com/articles/2014-12-30/playdoh-enrages-parents-with-a-penisshaped-baking-toy#r=read">Play-Doh Enrages Parents With a Penis-Shaped Baking Toy</a>
</li>
</ul>
</div>
<div class='tab_panel'>
<a name='Shared-Tab'></a>
<ul>
<li>
<a href="http://www.businessweek.com/articles/2014-12-31/6-new-years-resolutions-you-could-actually-keep#r=shared">Six New Year's Resolutions You Could Actually Keep</a>
</li>
<li>
<a href="http://www.businessweek.com/articles/2015-01-02/white-castle-introduces-veggie-sliders#r=shared">White Castle Now Serves Veggie Sliders, but Will Anyone Eat Them?</a>
</li>
<li>
<a href="http://www.businessweek.com/articles/2014-12-31/housing-in-2015-will-grow-but-not-back-to-long-run-average#r=shared">Housing in 2015: 'We Are in a Slow March Back to Normal'</a>
</li>
<li>
<a href="http://www.businessweek.com/articles/2015-01-02/why-you-should-care-about-greece-again#r=shared">Why You Should Care About Greece Again</a>
</li>
<li>
<a href="http://www.businessweek.com/articles/2014-12-31/united-and-orbitz-lawsuit-against-skiplaggedcom-raises-ethical-questions#r=shared">Is It OK to Cheat Airlines if It Saves You Money?</a>
</li>
</ul>
</div>
<div class='tab_panel'>
<a name='Discussed-Tab'></a>
<ul>
<li>
<a href="http://www.businessweek.com/articles/2014-12-31/united-and-orbitz-lawsuit-against-skiplaggedcom-raises-ethical-questions#r=discussed">Is it OK to Cheat Airlines if it Saves You Money?</a>
</li>
<li>
<a href="http://www.businessweek.com/articles/2014-12-31/who-is-alexey-navalny#r=discussed">Who Is Alexey Navalny?</a>
</li>
<li>
<a href="http://www.businessweek.com/articles/2014-12-29/why-air-disasters-keep-happening-in-southeast-asia#r=discussed">Why Air Disasters Keep Happening In Southeast Asia </a>
</li>
<li>
<a href="http://www.businessweek.com/articles/2014-12-30/playdoh-enrages-parents-with-a-penisshaped-baking-toy#r=discussed">Play-Doh Enrages Parents With a Penis-Shaped Baking Toy</a>
</li>
<li>
<a href="http://www.businessweek.com/articles/2014-12-23/marc-benioff-to-tech-industry-give-back-to-san-francisco#r=discussed">Marc Benioff's Philanthropic Mission: San Francisco</a>
</li>
</ul>
</div>
</div>
<div>
<div class='sponsored_module'>
<div class='sponsored_content sponsor_spot' data-ad-label='nativewell1' data-ad-position='nativewell1' data-ad-server='dfp' data-ad-size='2x1' data-property-id='NA-BUSIWEEKCOM-11236051' data-target-location='.sponsored_content'></div>
</div>
</div>
<div class='module'>
<div class='newsletter_promo' data-page-name='article'>
<h3 class='article'>Newsletter Signup</h3>
<div class='icons-bw_daily_promo-article'>
<a class='newsletter_preview_link' data-url='/newsletters/bw-daily/1504' href="javascript::void(0);">
Sample copy
</a>
</div>
<span class='newsletter_form'>
<form accept-charset="UTF-8" action="/newsletters/daily_subscription" data-remote="true" method="post"><div style="margin:0;padding:0;display:inline"><input name="utf8" type="hidden" value="✓" /><input name="authenticity_token" type="hidden" value="3Gfw5VxQdubsDhAj8fChGKHHggBBwKiyNk/oijz7xTs=" /></div>
<input class="email" id="_email" name="[email]" placeholder="Enter Your Email" size="30" type="email" />
<input class="flat_button" name="commit" type="submit" value="I'm in" />
<div class='delayed_display'>
<div class='input_group'>
<input name="[bw_promotions]" type="hidden" value="0" /><input checked="checked" id="_bw_promotions" name="[bw_promotions]" type="checkbox" value="1" />
<label for="_bw_promotions">Businessweek.com, on behalf of itself and select partners, may send me offers and promotions.</label>
</div>
<div class='input_group'>
<input name="[bb_promotions]" type="hidden" value="0" /><input id="_bb_promotions" name="[bb_promotions]" type="checkbox" value="1" />
<label for="_bb_promotions">Bloomberg, on behalf of itself and select partners, may send me offers and promotions.</label>
</div>
</div>
</form>
</span>
<p class='complete'>
Thank you for subscribing to our
Daily Newsletter.
You will receive a confirmation email shortly at
<span class='email_holder'></span>.
</p>
</div>
<div id='newsletter_content'></div>
</div>
<div class='module advertisement rectangle'>
<div class='gpt_ads_slot' id='right2'>
<div class='gpt_ad_container' data-gpt-size='[[300, 250], [300, 600], [300, 1050], [1, 1]]' data-original-position='right2' data-position='right2' data-pt='t2' data-size='300x250,300x600,300x1050,1x1' data-tile='4' data-tz='right2'></div>
</div>
</div>
<div class='module' id='featured_items'>
<h3>
<a href="http://www.businessweek.com/" class="logo">Bloomberg Businessweek</a>
</h3>
<ul>
<li>
<a href="http://www.businessweek.com/videos/2015-01-02/taking-account-of-indinero-s-comeback-story" class="thumbnail" title="Taking Account of inDinero’s Comeback Story"><img alt="Taking Account of inDinero’s Comeback Story" height="113" class="lazy" src="/assets/grey.gif" data-original="http://www.bloomberg.com/image/ixGHwnPD6Cs8.jpg" width="200" /><noscript><img alt="Taking Account of inDinero’s Comeback Story" height="113" src="http://www.bloomberg.com/image/ixGHwnPD6Cs8.jpg" width="200" /></noscript></a>
<h4><a href="http://www.businessweek.com/videos/2015-01-02/taking-account-of-indinero-s-comeback-story#r=lr-sr">Taking Account of inDinero’s Comeback Story</a></h4>
</li>
<li>
<a href="http://www.businessweek.com/videos/2015-01-02/how-the-sadkhin-complex-weight-loss-program-works" class="thumbnail" title="The Business Rethinking How You Shed Pounds in 2015"><img alt="The Business Rethinking How You Shed Pounds in 2015" height="113" class="lazy" src="/assets/grey.gif" data-original="http://www.bloomberg.com/image/iy_LHyBqLLB4.jpg" width="200" /><noscript><img alt="The Business Rethinking How You Shed Pounds in 2015" height="113" src="http://www.bloomberg.com/image/iy_LHyBqLLB4.jpg" width="200" /></noscript></a>
<h4><a href="http://www.businessweek.com/videos/2015-01-02/how-the-sadkhin-complex-weight-loss-program-works#r=lr-sr">The Business Rethinking How You Shed Pounds in 2015</a></h4>
</li>
<li>
<a href="http://www.businessweek.com/videos/2015-01-02/a-lot-of-opportunity-in-high-yield-bonds-mcclellan" class="thumbnail" title="`A Lot of Opportunity' in High-Yield Bonds: McClellan"><img alt="`A Lot of Opportunity' in High-Yield Bonds: McClellan" height="112" class="lazy" src="/assets/grey.gif" data-original="http://www.bloomberg.com/image/itLWogtFf72w.jpg" width="200" /><noscript><img alt="`A Lot of Opportunity' in High-Yield Bonds: McClellan" height="112" src="http://www.bloomberg.com/image/itLWogtFf72w.jpg" width="200" /></noscript></a>
<h4><a href="http://www.businessweek.com/videos/2015-01-02/a-lot-of-opportunity-in-high-yield-bonds-mcclellan#r=lr-sr">`A Lot of Opportunity' in High-Yield Bonds: McClellan</a></h4>
</li>
<li>
<a href="http://www.businessweek.com/articles/2015-01-02/kanye-wests-only-one-isnt-very-good-but-it-is-selling" class="thumbnail" title="Kanye West’s <em>Only One</em> Isn’t Very Good, but It Is Selling"><img alt="Kanye West in Paris" height="127" class="lazy" src="/assets/grey.gif" data-original="http://images.bwbx.io/cms/2015-01-02/0102-kayne-970x647-190x127.jpg" width="190" /><noscript><img alt="Kanye West in Paris" height="127" src="http://images.bwbx.io/cms/2015-01-02/0102-kayne-970x647-190x127.jpg" width="190" /></noscript></a>
<h4><a href="http://www.businessweek.com/articles/2015-01-02/kanye-wests-only-one-isnt-very-good-but-it-is-selling#r=lr-sr">Kanye West’s <em>Only One</em> Isn’t Very Good, but It Is Selling</a></h4>
</li>
<li>
<a href="http://www.businessweek.com/articles/2015-01-02/ces-2015-this-years-tech-anxiety-is-ending-up-like-tv-makers" class="thumbnail" title="This Year’s CES Anxiety: Ending Up Like TV Makers"><img alt="This Year’s CES Anxiety: Ending Up Like TV Makers" height="127" class="lazy" src="/assets/grey.gif" data-original="http://media.gotraffic.net/images/iEiG7cThqOf0/v3/190x127.jpg" width="190" /><noscript><img alt="This Year’s CES Anxiety: Ending Up Like TV Makers" height="127" src="http://media.gotraffic.net/images/iEiG7cThqOf0/v3/190x127.jpg" width="190" /></noscript></a>
<h4><a href="http://www.businessweek.com/articles/2015-01-02/ces-2015-this-years-tech-anxiety-is-ending-up-like-tv-makers#r=lr-sr">This Year’s CES Anxiety: Ending Up Like TV Makers</a></h4>
</li>
<li>
<a href="http://www.businessweek.com/articles/2015-01-02/french-economist-thomas-piketty-faces-trial-by-peers" class="thumbnail" title="French Economist Thomas Piketty Faces Trial by Peers"><img alt="Thomas Piketty after a lecture on his book Capital in the Twenty-First Century at the Normal University of Beijing, on Nov. 15." height="127" class="lazy" src="/assets/grey.gif" data-original="http://images.bwbx.io/cms/2015-01-02/0102-piketty-970x647-190x127.jpg" width="190" /><noscript><img alt="Thomas Piketty after a lecture on his book Capital in the Twenty-First Century at the Normal University of Beijing, on Nov. 15." height="127" src="http://images.bwbx.io/cms/2015-01-02/0102-piketty-970x647-190x127.jpg" width="190" /></noscript></a>
<h4><a href="http://www.businessweek.com/articles/2015-01-02/french-economist-thomas-piketty-faces-trial-by-peers#r=lr-sr">French Economist Thomas Piketty Faces Trial by Peers</a></h4>
</li>
<li>
<a href="http://www.businessweek.com/articles/2015-01-02/why-you-should-care-about-greece-again" class="thumbnail" title="Why You Should Care About Greece Again"><img alt="Riot police carry shields past tourists outside the Parliament following a final vote by lawmakers for a new Greek president in Athens on Dec. 29, 2014" height="127" class="lazy" src="/assets/grey.gif" data-original="http://media.gotraffic.net/images/ifWO1z4e5wmE/v3/190x127.jpg" width="190" /><noscript><img alt="Riot police carry shields past tourists outside the Parliament following a final vote by lawmakers for a new Greek president in Athens on Dec. 29, 2014" height="127" src="http://media.gotraffic.net/images/ifWO1z4e5wmE/v3/190x127.jpg" width="190" /></noscript></a>
<h4><a href="http://www.businessweek.com/articles/2015-01-02/why-you-should-care-about-greece-again#r=lr-sr">Why You Should Care About Greece Again</a></h4>
</li>
<li>
<a href="http://www.businessweek.com/articles/2015-01-02/white-castle-introduces-veggie-sliders" class="thumbnail" title="White Castle Now Serves Veggie Sliders, but Will Anyone Eat Them?"><img alt="White Castle Now Serves Veggie Sliders, but Will Anyone Eat Them?" height="127" class="lazy" src="/assets/grey.gif" data-original="http://media.gotraffic.net/images/ivtLu3LapbUM/v3/190x127.jpg" width="190" /><noscript><img alt="White Castle Now Serves Veggie Sliders, but Will Anyone Eat Them?" height="127" src="http://media.gotraffic.net/images/ivtLu3LapbUM/v3/190x127.jpg" width="190" /></noscript></a>
<h4><a href="http://www.businessweek.com/articles/2015-01-02/white-castle-introduces-veggie-sliders#r=lr-sr">White Castle Now Serves Veggie Sliders, but Will Anyone Eat Them?</a></h4>
</li>
</ul>
</div>
<div class='module advertisement rectangle'>
<div class='gpt_ads_slot' id='circ_right'>
<div class='gpt_ad_container' data-gpt-size='[[300, 123], [1, 1]]' data-original-position='circ_right' data-position='circ_right' data-pt='t2' data-size='300x123,1x1' data-tile='5' data-tz='circ_right'></div>
</div>
</div>
<div class='clearfix module' id='google_ads'>
<h3>Ads by Google</h3>
<ul></ul>
</div>
<div class='module advertisement rectangle'>
<div class='gpt_ads_slot' id='right3'>
<div class='gpt_ad_container' data-gpt-size='[[300, 250], [1, 1]]' data-original-position='right3' data-position='right3' data-pt='t2' data-size='300x250,1x1' data-tile='6' data-tz='right3'></div>
</div>
</div>
<div class='module' id='dianomi'>
<h3>Sponsored Financial Commentaries</h3>
<iframe height='250' src='http://www.smartlinks.dianomi.com/smartads.epl?id=1524' width='300'></iframe>
</div>
<div class='module' data-cid='3838-3459469477' id='bw_mall'>
<h3>Sponsored Links</h3>
<div class='bw_mall_ads'></div>
<p><a href="http://www.industrybrains.com/businessweek/" class="buy_link" rel="nofollow">Buy a link now!</a></p>
</div>
<div id='bottom_ads'>
<div class='bottom_ad1'>
<div class='gpt_ads_slot' id='bottom1'>
<div class='gpt_ad_container' data-gpt-size='[[120, 60], [1, 1]]' data-original-position='bottom1' data-position='bottom1' data-pt='t2' data-size='120x60,1x1' data-tile='7' data-tz='bottom1'></div>
</div>
</div>
<div class='bottom_ad2'>
<div class='gpt_ads_slot' id='bottom2'>
<div class='gpt_ad_container' data-gpt-size='[[120, 60], [1, 1]]' data-original-position='bottom2' data-position='bottom2' data-pt='t2' data-size='120x60,1x1' data-tile='8' data-tz='bottom2'></div>
</div>
</div>
<div id='text_bottom_ad'>
<div class='gpt_ads_slot' id='bottom'>
<div class='gpt_ad_container' data-gpt-size='[[300, 200], [1, 1]]' data-original-position='bottom' data-position='bottom' data-pt='t2' data-size='300x200,1x1' data-tile='9' data-tz='bottom'></div>
</div>
</div>
</div>
</div>
</div>
<div class='bottom_container clearfix'>
<div class='bottom_column primary'>
</div>
<div class='bottom_column rail'>
</div>
</div>
<div class='clearfix' id='footer'>
<div class='social module'>
<h3>Social</h3>
<ul>
<li class='twitter'>
<a href="http://twitter.com/BW">Follow us on Twitter</a>
</li>
<li class='fb'>
<a href="http://facebook.com/Bloombergbusinessweek/">Join us on Facebook</a>
</li>
<li class='linked_in'>
<a href="http://www.linkedin.com/company/businessweek">Connect with us on LinkedIn</a>
</li>
<li class='google_plus'>
<a href="https://plus.google.com/102524048968901635455" rel="publisher">Connect with us on Google+</a>
</li>
<li class='subscribe last'>
<a href="https://subscribe.businessweek.com/servlet/OrdersGateway?cds_mag_code=BWK&cds_page_id=160308">Subscribe to Bloomberg Businessweek</a>
</li>
<li class='bloomberg_logo last ir'>
<a href="http://www.bloomberg.com" target="_blank">Bloomberg</a>
</li>
</ul>
</div>
<div class='links module clearfix'>
<h3>Links</h3>
<ul>
<li><a href="http://bloomberg.com/company">Our Company</a></li>
<li><a href="http://www.bloomberg.com/now/bloomberg-news-mission-statement/">News Mission</a></li>
<li><a href="http://bloombergmedia.com">Advertising</a></li>
<li><a href="http://bloomberg.com/careers">Careers</a></li>
<li><a href="http://www.bloomberg.com/contentlicensing">Content Licensing</a></li>
<li><a href="http://www.businessweek.com/contact">Feedback</a></li>
<li><a href="http://www.businessweek.com/adsections/">Custom Publishing</a></li>
<li><a href="http://www.businessweek.com/manage-subscription">Manage Subscription</a></li>
</ul>
<ul class='last'>
<li><a href="http://www.businessweek.com/mobile">Mobile</a></li>
<li><a href="https://secure.businessweek.com/newsletters/sign-up">Newsletters</a></li>
<li><a href="http://www.businessweek.com/privacy">Privacy Policy</a></li>
<li><a href="http://reprints.ygsgroup.com/m/bloombergbusinessweek">Reprints & Permissions</a></li>
<li><a href="http://www.businessweek.com/sitemap.htm">Sitemap</a></li>
<li><a href="http://www.businessweek.com/terms">Terms of Use</a></li>
<li><a href="javascript:void(0)" class="opinion-lab">[+] Rate This Page</a></li>
<li><a href="http://www.businessweek.com/sponsor-content-terms">Sponsor Content Terms</a></li>
</ul>
</div>
<div class='current_issue module clearfix'>
<h3>Get Businessweek Delivered</h3>
<a class='cover_image_thumbnail' href="https://subscribe.businessweek.com/servlet/OrdersGateway?cds_mag_code=BWK&cds_page_id=160308">
<img alt="The Good Business Issue" height="155" src="http://images.bwbx.io/cms/2014-12-23/bbw_good_business_issue_122914.jpg" width="110" />
</a>
<h6>
<a href="https://subscribe.businessweek.com/servlet/OrdersGateway?cds_mag_code=BWK&cds_page_id=160308">The Good Business Issue</a>
</h6>
<a class='subscribe_button' href="https://subscribe.businessweek.com/servlet/OrdersGateway?cds_mag_code=BWK&cds_page_id=160308">Subscribe</a>
</div>
<div class='copyright'>
<p>
<span>©2015 Bloomberg L.P. All Rights Reserved. Made in NYC</span>
<span class='ad_choice'>
<a href="http://www.businessweek.com/privacy#advertisements">Ad Choices
<span class='icons-ad_choice'></span>
</a></span>
</p>
</div>
</div>
</div>
<script src="http://static.btrd.net/assets/gpt_ads-17bd6d266c9884f927d44c22606dea3e.js" type="text/javascript"></script>
<script src="http://static.btrd.net/assets/application-fc306c584a33fa24888a4729dca180a2.js" type="text/javascript"></script>
<script>
var _gaq=[["_setAccount","UA-11413116-6"],["_trackPageview"],["_trackPageLoadTime"]];
(function(d,t){var g=d.createElement(t),s=d.getElementsByTagName(t)[0];g.async=1;
g.src=("https:"==location.protocol?"//ssl":"//www")+".google-analytics.com/ga.js";
s.parentNode.insertBefore(g,s)}(document,"script"));
</script>
<script src="http://static.btrd.net/assets/jquery.bloomberg_hat-7c768497a3670c3f9da1b9420a9c3801.js" type="text/javascript"></script>
<script src="http://static.btrd.net/assets/jquery.truste-consent-1f59258579d7f178906f4d9042377f96.js" type="text/javascript"></script>
<link href="http://cdn.gotraffic.net/projector/latest/bvp.css" media="screen" rel="stylesheet" type="text/css" /><script src="http://cdn.gotraffic.net/projector/latest/video.js" type="text/javascript"></script>
<script>
googletag.cmd.push(function() { googletag.display('header-companion-ad'); });
</script>
<script>
try {
$(window).load(function() {
$('.branding_hat').bloomberg_hat({ 'active_link':'businessweek'}, function(){
BLOOMBERG.bw_user.init_sign_in_box();
}); //create the hat, all markup is in the jquery plugin file
$.each(
$('.lazy'), function(index, value){
$(value).attr('src', $(value).attr('data-original'));
}
);
});
} catch(err){}
try {
var tracking_code = window.location.hash.match(/#r=[a-zA-Z_-]*/);
if (tracking_code != null && tracking_code != "" && tracking_code.length > 0)
_gaq.push(['_trackEvent', tracking_code[0], document.referrer, location.href]);
} catch(err){}
// Lazy load navigation submenus, see also layouts/_navigation
$('#global_nav').ready(function() {
var params = window.location.href.split('?');
if (params.length == 2) {
pass_along_params = "?" + params[1];
} else {
pass_along_params = "";
}
$(window).load(function() {
if ($('body').hasClass("admin") == false) {
$.ajax({
url: '/layout/navigation'+pass_along_params,
dataType: "html",
success: function(data) {
$('#global_nav').replaceWith(data);
BLOOMBERG.event_track.linkTrack();
}
});
}
});
});
</script>
<script>
$(window).load(function() {
BLOOMBERG.track_event('Inline Related Links', 'View');
});
</script>
<script src='http://pagead2.googlesyndication.com/pagead/show_ads.js'></script>
<script>
function disqus_config() {
this.callbacks.onNewComment = [function() { trackComment(); }];
};
function trackComment(){
var tracking_img_src = "http://analytics.bloomberg.com/images/analytics-bw/dot1.gif?id=5ca70b7a-86e6-11e4-9c0e-d8d385601e40&pub_date=2014-12-22 09:54:09 -0500&type=story&activity_type=discussed&uri=/,/markets-and-finance,/markets-and-finance/investing,/authors/54947-allison-schrager";
$('body').append('<img src="'+tracking_img_src+'" style="visibility:hidden;" />');
};
var disqus_shortname = "bwbeta";
var disqus_identifier = "5ca70b7a-86e6-11e4-9c0e-d8d385601e40";
var disqus_title = "Cuomo\'s Cap on Hedge Funds in Pensions Solves Only Part of the Problem";
var disqus_developer = 0;
var disqus_url = "http://www.businessweek.com/articles/2014-12-22/cuomos-cap-on-hedge-funds-in-pensions-wont-solve-the-real-problem" ;
/* * * DON'T EDIT BELOW THIS LINE * * */
$(window).load(function() {
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
dsq.src = 'http://' + disqus_shortname + '.disqus.com/embed.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
});
</script>
<div id='BF_WIDGET_1'> </div>
<!-- BEGIN DISQUS -->
<a class='dsq-brlink' href="http://disqus.com" title='blog comments powered by'>
blog comments powered by
<span class='logo-disqus'>
Disqus
</span>
</a>
<!-- END DISQUS -->
<script>
$(window).bind("load", function() {
var tracking_img_src = "http://analytics.bloomberg.com/images/analytics-bw/dot1.gif?id=5ca70b7a-86e6-11e4-9c0e-d8d385601e40&pub_date=2014-12-22 09:54:09 -0500&type=story&activity_type=read&uri=/,/markets-and-finance,/markets-and-finance/investing,/authors/54947-allison-schrager";
$('body').append('<img src="'+tracking_img_src+'" style="visibility:hidden;" />');
});
</script>
<script>
$(window).load(function(){
BLOOMBERG.bw_core.deferred_load_js("http://static.btrd.net/onlineopinionV5/oo_engine.min.js");
});
</script>
<script>
__reach_config = {
pid: '530523d097b0c9220a00000b',
title: "Cuomo's Cap on Hedge Funds in Pensions Won't Solve the Real Problem - Businessweek",
url: 'http://www.businessweek.com/articles/2014-12-22/cuomos-cap-on-hedge-funds-in-pensions-wont-solve-the-real-problem',
date: '2014-12-22T09:54:09-05:00',
authors: ["Allison Schrager"],
channels: ["markets_and_finance"],
tags: [""],
iframe: true,
ignore_errors: false,
};
(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>
<div id='parsely-root' style='display: none'>
<div data-parsely-site='businessweek.com' id='parsely-cfg'></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>
<script>
$(window).load(function() {
var REMOTE = "https://secure.businessweek.com";
var xhr = new easyXDM.Rpc({
local: "/easyxdm/name.html",
swf: REMOTE + "/easyxdm/easyxdm.swf",
remote: REMOTE + "/easyxdm/cors/",
remoteHelper: REMOTE + "/easyxdm/name.html"
}, {
remote: {
request: {}
}
});
BLOOMBERG.bw_user.ajax_sign_on = function(form) {
$(".report_error").remove();
form.find('input').removeClass("error");
request = {
url: "https://secure.businessweek.com/login",
method: "POST",
data: {
email : $('#new_user_form #user_form_email').val(),
password : $('#new_user_form #user_form_password').val(),
remember_me : $('#new_user_form #user_form_remember_me').val()
}
}
var responseHandler = function(response) {
var json = easyXDM.getJSONObject().parse(response.data);
if (json.message == "success") {
$('.sign_in_frame').fadeOut("fast", function() {BLOOMBERG.bw_user.replace_with_username('#sign_in')});
}
};
var errorHandler = function(error) {
var json = easyXDM.getJSONObject().parse(error.data.data);
if(json.message == "migrate"){
window.location = json.url;
} else {
$("<span class='report_error'>"+json.message+"</span>").insertBefore($("#user_form_email"));
$('#new_user_form input').addClass("error");
}
};
xhr.request(request, responseHandler, errorHandler);
};
});
</script>
<script>
$(".facebook_button").bind('click', function(e) {
e.preventDefault();
FB.login(function(response) {
if(response && response.status == 'connected' ){
login_with_facebook();
}
}, {scope: 'email'});
});
$(".facebook_link_button").bind('click', function(e) {
e.preventDefault();
FB.login(function(response) {
if(response && response.status == 'connected' ){
link_account(response);
}
}, {scope: 'email'});
});
function show_protected_content(){
$("#facebook_wall").hide();
$('.protected_content').removeClass('protected_content');
if ( $('body').hasClass('article_old_article')){
$('body.article_old_article #story_body div.unprotected_content').remove();
$('body.article_old_article #story_body p.sign_in').remove();
}
};
function login_with_facebook() {
var REMOTE = "https://secure.businessweek.com";
var xhr = new easyXDM.Rpc({
local: "/easyxdm/name.html",
swf: REMOTE + "/easyxdm/easyxdm.swf",
remote: REMOTE + "/easyxdm/cors/",
remoteHelper: REMOTE + "/easyxdm/name.html"
}, {
remote: {
request: {}
}
});
request = {
url: "https://secure.businessweek.com/auth/facebook/callback",
method: "GET",
data: {
referrer_url : window.location.href
}
}
var responseHandler = function(response) {
reg_enabled = "true";
if (reg_enabled == "true"){
$('.sign_in_frame').html('<span class="success">Success!</span>');
$('#sign_in a.opened').removeClass('opened');