to your HTML Add class="sortable" to any table you'd like to make sortable Click on the headers to sort Thanks to many, many people for contributions and suggestions. Licenced as X11: http://www.kryogenix.org/code/browser/licence.html This basically means: do what you want with it. */ var stIsIE = /*@cc_on!@*/false; sorttable = { init: function() { // quit if this function has already been called if (arguments.callee.done) return; // flag this function so we don't do the same thing twice arguments.callee.done = true; // kill the timer if (_timer) clearInterval(_timer); if (!document.createElement || !document.getElementsByTagName) return; sorttable.DATE_RE = /^(\d\d?)[\/\.-](\d\d?)[\/\.-]((\d\d)?\d\d)$/; forEach(document.getElementsByTagName('table'), function(table) { if (table.className.search(/\bsortable\b/) != -1) { sorttable.makeSortable(table); } }); }, makeSortable: function(table) { if (table.getElementsByTagName('thead').length == 0) { // table doesn't have a tHead. Since it should have, create one and // put the first table row in it. the = document.createElement('thead'); the.appendChild(table.rows[0]); table.insertBefore(the,table.firstChild); } // Safari doesn't support table.tHead, sigh if (table.tHead == null) table.tHead = table.getElementsByTagName('thead')[0]; if (table.tHead.rows.length != 1) return; // can't cope with two header rows // Sorttable v1 put rows with a class of "sortbottom" at the bottom (as // "total" rows, for example). This is B&R, since what you're supposed // to do is put them in a tfoot. So, if there are sortbottom rows, // for backwards compatibility, move them to tfoot (creating it if needed). sortbottomrows = []; for (var i=0; i
The Federal Reserve Bank of St. Louis has published a report by Thomas A. Garrett and Russell M. Rhine in the March/April edition of its Review (available as a 311KB PDF document) that provides a historical analysis that compares how Private Retirement Accounts would have fared next to Social Security in providing retirement income to people who retired in 2003, had the option been available during their working years. The authors found that:
From our numerical analysis, we find that over 99 percent of the U.S. population would have earned a greater return by investing in the S&P 500, and over 95 percent would have earned a greater return by investing in 6-month CDs relative to the current Social Security system.
Demonstrating that PRAs would be a better option for providing retirement income for 95 out of 100 workers. Even taking market volatility into account (the period considered included the most recent market downturn, as well as all other market downturns over the past 56 years, which coincides with the working years of a 2003 retiree), Garrett and Rhine found that:
Despite these market fluctuations, a long-term investment in the S&P 500 for a 2003 retiree would have yielded a greater monthly income than is provided under the current Social Security system.
When you consider that the hypothetical 2003 retiree in the report would have faced a stock market that had been significantly depressed by the combination of the bursting of the Internet-stock bubble in 2000 and the aftermath of the September 11, 2001 terrorist attacks occurring at the worst possible time in their careers, right before retirement, the authors' findings make the proposed PRA option for Social Security even more compelling. Hat Tip: Divison of Labour via the Economics Roundtable.
Interestingly, the Economics Roundtable also highlights a post from Nathan Newman's Laborblog, which trumpets the recent action of the AFL-CIO in successfully driving the retail brokerage house Edward Jones out of a pro-Social Security reform coalition. The AFL-CIO was able to achieve this result by leveraging the more than $400 billion it collectively controls through its various members' pension plans by threatening to withdraw all of its business from Edward Jones and advocating to its membership that they should end their personal business at the firm as well.
Would I be alone in wondering what kinds of investments the AFL-CIO pension plan managers are making with their members' lifelong contributions to provide for their income in retirement?
Update: Apparently not! Larry Kudlow answers my rhetorical question in his post Dirty Pool.
Welcome to the blogosphere's toolchest! Here, unlike other blogs dedicated to analyzing current events, we create easy-to-use, simple tools to do the math related to them so you can get in on the action too! If you would like to learn more about these tools, or if you would like to contribute ideas to develop for this blog, please e-mail us at:
ironman at politicalcalculations
Thanks in advance!
Closing values for previous trading day.
This site is primarily powered by:
The tools on this site are built using JavaScript. If you would like to learn more, one of the best free resources on the web is available at W3Schools.com.