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
With the NCAA final four just two days away, and the personal income tax filing deadline now less than two weeks away, we thought it might be fun to return to a supposedly simpler time, by looking at the most complex array of income tax brackets ever designed by a U.S. Congress: 1954.
Did we say simpler time? Here's our chart illustrating what income tax rate you could expect to pay if you were alive and earning an income in those long ago days of yesteryear:
The rates in the chart above apply for a single, unmarried individual, and begin with having their income taxed at a rate of 20% for the first $2000 of income. From there, this marvel of progressive taxation theory grows upward in some 24 steps, or distinct income tax brackets, until it reaches a maximum rate of 91% for those earning incomes of $200,000 or more.
But, those are 1954 U.S. dollars! In our next chart, we've adjusted the multiple income levels for inflation to be in 2006 U.S. dollars:
So we see than in terms of today's dollars (or as close as we can get until inflation figures for 2007 are finalized), those with very low incomes ranging from $0 to $15,038 could expect to give 20% of that income to Uncle Sam. Meanwhile, in just the next higher bracket, those between $15,038 and $30,075 would give up 22% of their income.
Going to the middle of the income range, a single individual making just over $75,188 in 2006's U.S. dollars (or $10,000 1954 U.S. dollars) would find themselves in the 38% tax bracket, which is higher than the maximum tax income tax rate today of 35%! Heck, even those with annual incomes over $200,000 would find themselves giving at least 62% of it to the U.S. government. But the tax pain doesn't stop as it as 1954's tax rates continue notching up all the way up to just over $1.5 million in 2006 U.S. dollars, where that 91% rate would apply for all income above that level!
The problem with having a progressive's dream tax code like this, which we suspect that today's most "progressive" politicians would drool over, is that it provides extremely powerful disincentives to do things to earn an honest income, as it came to be realized. What's the point of working harder or being more productive if you can never realize a proportional benefit for your work? Or if you do, and you're smart, why not manipulate the system in ways that avoid your having to pay these kinds of taxes so you can have your cake and eat it too?
No wonder JFK was such a supply-sider!:
"Our true choice is not between tax reduction, on the one hand, and the avoidance of large Federal deficits on the other. It is increasingly clear that, no matter what party is in power, so long as our national security needs keep rising, an economy hampered by restrictive tax rates will never produce enough revenue to balance the budget - just as it will never produce enough jobs or enough profits.
"In short, it is a paradoxical truth that tax rates are too high today and tax revenues are too low - and the soundest way to raise revenues in the long run is to cut rates now."
Labels: 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.