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
On 15 September 2010, Greg Mankiw asked "How much would the President raise the top tax rate?" He quotes what he found:
In 2010, the top income tax rate bracket for ordinary income is 35 percent. Besides wages and interest income, this income category includes profits from pass-through business firms—sole proprietorships, partnerships, and S-corporations.
Under the president’s proposal, the top bracket will rise to 39.6 percent. A stealth provision that phases out high-income taxpayers’ itemized deductions will also be reinstated, adding another 1.2 percentage points to the effective tax rate, bringing it to 40.8 percent. Wages and some of the pass-through income will also remain subject to a 2.9 percent Medicare tax. These 40.8 and 43.7 percent tax rates, which will apply in 2011 and 2012, match the 1994 to 2000 rates—the same top bracket, stealth provision, and Medicare tax were in place then.
But the picture changes in 2013. Under the healthcare law adopted in March, the Medicare tax will rise that year, from 2.9 to 3.8 percent. Also, a new 3.8 percent tax, called the Unearned Income Medicare Contribution (UIMC), will be imposed on high-income taxpayers’ interest income and most of their pass-through business income that’s not subject to Medicare tax. So, under the president’s proposal, virtually all of top earners’ ordinary income will be taxed at 44.6 percent, starting in 2013.
On 10 December 2009, here is what we predicted:
If the Obama administration holds to the recent practice of U.S. politicians of keeping near the lower margin, the expected national debt burden for 2011 of 2.9 indicates that the top marginal income tax rate will increase to roughly 44-45%.
Want to test drive our predictive model for yourself to see what the effects of raising the top income tax rate in the U.S. will have on you? It's built into the Independent Institute's MyGovCost calculator!
Labels: forecasting, taxes
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.