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
Craig Newmark of Newmark's Door recently pointed to the Labor Research Association's table outlining the overall decline of union membership in the United States since 1948. We here at Political Calculations thought that kind of data would be easier to show off as a chart:
1959-1970: After peaking in 1953, and largely leveling off afterward, union membership as a percentage of the private sector workforce began declining during the period of 1959 through 1970 largely due to the much faster growth of the non-unionized ranks of the private sector. Remarkably, this occurred even as the total number of private sector labor union jobs increased throughout this period. At its peak in 1970, the number of union jobs in the private sector nearly reached 17 million.
1971-1978: The years between 1970 and 1979 mark the beginning of the decline of the total number of labor union member in the U.S. This period saw several major shocks to the U.S. economy - high inflation began taking root, the Arab oil embargo, and increased competition from foreign-based companies that was largely absent in the U.S. following the end of World War II. All of these factors combined in a kind of "perfect-storm" event to negatively impact industries where labor unions were strongly entrenched, most visibly in the U.S. domestic automotive industry.
1979-1984: The greatest period of decline for U.S. union membership occurred between 1979 and 1984, as the combination of high inflation and low economic growth that defined the Carter's administration's economic ineptitude were reversed by the Federal Reserve's tight money policies under Paul Volcker, which had the negative effect of creating a recession that accelerated the loss of union jobs in this period. The large scale losses of private sector union jobs continued until 1984 when, with inflation largely tamed, the Reagan administration's pro-growth economic policies fully took hold.
Since 1984: The overall decline in the number of private sector union members has largely stabilized at a near constant annual rate of decline of 1.7% since 1984, declining steadily from 11.6 million in 1984 to 8.2 million in 2004. The percentage of union members within the private sector has declined from 15.5% of the private sector labor force year in 1984 to just 7.9% in 2004. Here, the combination of faster economic growth of the non-unionized private sector in the U.S. along with the real decline of the unions throughout this period accounts for the ongoing trend toward less unionization in the most productive portion of the U.S. economy.
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.