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
What are the occupations of the lowest paid people in the U.S.? And how much do they make? We here at Political Calculations not only ask questions like these, we take time out of our busy days to answer them too!
Our go-to source for finding out what industries or occupations represent the low end of the U.S. totem pole turned out to be the Congressional Budget Office, which published a study of the lowest-wage workers in the U.S. from 1979 through 2005 (available in this December 2006 report.) The report indicates that just six general fields account for more than half the employment of the lowest paid 20% of the U.S. workforce:
Now, let's find out what the actual lowest paying jobs are! The following table is taken from BizJournals.com's analysis of full-time private sector worker salaries in 2004. Since several of these occupations supplement their basic pay by collecting income from tips, an asterisk (*) has been added to indicate those occupations where substantial tip income has not been included. We've added the column for the Equivalent Hourly Rate, which we found by taking each occupations' average annual earnings for 2004 and dividing by 2080 hours (the equivalent of 40 hours per week, 52 weeks per year):
10 Jobs with the Lowest Annual Earnings | ||
---|---|---|
Occupation | Average Earnings of Full-Time Workers ($USD) | Equivalent Hourly Rate ($USD/hour) |
Waiters and waitresses (*) | 8,751 | 4.21 |
Waiters and waitresses' assistants | 12,355 | 5.94 |
Bartenders (*) | 13,284 | 6.39 |
Amusement and Recreation Facility Attendants | 14,498 | 6.97 |
Baggage Porters and Bellhops (*) | 14,970 | 7.20 |
Food Preparation Workers Not Classified Elsewhere | 16,169 | 7.77 |
Early Childhood Teacher's Assistants | 16,563 | 7.96 |
Maids and Housemen | 16,609 | 7.99 |
Teacher's Aides | 16,670 | 8.01 |
Food Preparation Kitchen Workers | 17,529 | 8.43 |
We should note that these figures only apply to full-time workers. As we've previously reported, the vast majority of low hourly wage jobs in the U.S. are part-time positions, particularly those at the federal minimum wage.
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.