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
September 2011 was the best month for U.S. jobs in 2011, as 398,000 more Americans were counted as employed than in the previous month, as the U.S. economy began to pick up its pace of growth. As expected.
In addition, for the first time since the last recession officially ended in June 2009, the number of employed Americans rose above the 140 million mark, to 140,025,000.
Compared to the month before the last recession began in December 2007, when the total employment level peaked in the United States at 146,584,000, some 6,559,000 fewer Americans were being counted as having jobs in the month of September 2011.
Breaking down the change from the previous months totals by age, some 40,000 additional teens (Age 16-19), 177,000 additional young adults (Age 20-24), and 181,000 adults (Age 25+) were counted as being employed in September 2011 than were in August 2011.
Compared to November 2007, some 1,559,000 fewer teens (Age 16-19), 927,000 fewer young adults (Age 20-24) and 4,073,000 fewer adults (Age 25+) had jobs in September 2011.
Of all those jobs that have disappeared from the U.S. economy since the recession began in December 2007, nearly 1 in 4 were held by teens, who represent just 3.1% of the entire employed U.S. workforce as of September 2011. In November 2007, teens represented 4.3% of the entire U.S. workforce.
Labels: jobs
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.