Last summer, fry cooks, drive-thru cashiers, and burger flippers in 60 cities took to picket lines to protest low wages that have barely grown in 40 years. In fact, adjusting for inflation, average hourly pay for fast-food workers has fallen 29 cents in the last decade alone.
The protests have since multiplied in size and scope: Fast food workers walked off the job in 100 cities this past December, calling for a minimum wage of $15 an hour. In March, lawsuits were filed in three states alleging an epidemic of wage theft at McDonald’s franchises, kicking off demonstrations from New York to Kansas City to Detroit. Last month, a coalition supporting the protests sponsored the first-ever national poll of fast food workers—which found that 89 percent of them reported having wages stolen—and a new analysis was released showing that top fast-food executives now make about 1200 times more than their franchise staffers.
After hearing about last summer’s demonstrations, California photographer Gregg Segal wanted to illustrate the stagnant wages being paid to many of America’s 21 million fast food industry employees. He attended a Service Employees International Union organizing meeting in Hollywood where he met five workers, all employees of McDonalds or Burger King, some in the ritziest parts of LA. He asked them to don old-school uniforms of their respective employers from the ’60s and ’70s that he’d dug up on eBay.
“I wanted a quick read that says, ‘This is a fast food worker today,'” Segal says. “And the wages are as vintage as the uniforms.”
For a sobering look at what fast food workers are up against, try our wage calculator below these photos and see how your family would fare on a typical fast-food paycheck.
var median_fast_food_worker_wage = 8.94; // Source: National Employment Law Project, July 2013; http://nelp.3cdn.net/84a67b124db45841d4_o0m6bq42h.pdf var work_weeks_per_year = 52; var months_per_year = 12; var average_fast_food_worker_hours_per_week = 24.4; var average_weeks_in_a_month = 4.348; var hours_worked_at_full_time = 40;
var days_in_2012 = 366; //leap year var McDonalds_customers_per_day_in_2012 = 69000000; // Source: McDonalds 2012 Annual Report var hours_in_day = 24; var mcD_systemwide_restaurants = 34480; var mcD_served_per_hour = McDonalds_customers_per_day_in_2012 / hours_in_day;
var mcD_earnings_in_2012 = 27567000000; // Source: McDonalds 2012 Annual Report http://www.aboutmcdonalds.com/content/dam/AboutMcDonalds/Investors/Investor%202013/2012%20Annual%20Report%20Final.pdf var mcD_earned_per_hour = Math.round(mcD_earnings_in_2012 / days_in_2012 / hours_in_day);
var cost_of_big_mac = 4;
var first_state = 'AK'; var first_locale = 'Anchorage, AK HUD Metro FMR Area'; var state_abbr = { 'AL' : 'Alabama', 'AK' : 'Alaska', 'AS' : 'America Samoa', 'AZ' : 'Arizona', 'AR' : 'Arkansas', 'CA' : 'California', 'CO' : 'Colorado', 'CT' : 'Connecticut', 'DE' : 'Delaware', 'DC' : 'District of Columbia', 'FM' : 'Micronesia1', 'FL' : 'Florida', 'GA' : 'Georgia', 'GU' : 'Guam', 'HI' : 'Hawaii', 'ID' : 'Idaho', 'IL' : 'Illinois', 'IN' : 'Indiana', 'IA' : 'Iowa', 'KS' : 'Kansas', 'KY' : 'Kentucky', 'LA' : 'Louisiana', 'ME' : 'Maine', 'MH' : 'Islands1', 'MD' : 'Maryland', 'MA' : 'Massachusetts', 'MI' : 'Michigan', 'MN' : 'Minnesota', 'MS' : 'Mississippi', 'MO' : 'Missouri', 'MT' : 'Montana', 'NE' : 'Nebraska', 'NV' : 'Nevada', 'NH' : 'New Hampshire', 'NJ' : 'New Jersey', 'NM' : 'New Mexico', 'NY' : 'New York', 'NC' : 'North Carolina', 'ND' : 'North Dakota', 'OH' : 'Ohio', 'OK' : 'Oklahoma', 'OR' : 'Oregon', 'PW' : 'Palau', 'PA' : 'Pennsylvania', 'PR' : 'Puerto Rico', 'RI' : 'Rhode Island', 'SC' : 'South Carolina', 'SD' : 'South Dakota', 'TN' : 'Tennessee', 'TX' : 'Texas', 'UT' : 'Utah', 'VT' : 'Vermont', 'VI' : 'Virgin Island', 'VA' : 'Virginia', 'WA' : 'Washington', 'WV' : 'West Virginia', 'WI' : 'Wisconsin', 'WY' : 'Wyoming' }
var selected_state = jQuery("#selected_state"); var selected_locale = jQuery("#selected_locale"); var selected_household = jQuery("#selected_household");
for (var state in bfjo) { var option = jQuery('
var fill_locale_selector = function(state_object) {
selected_locale.html("");
for (var locale in state_object) { var option = jQuery('
fill_locale_selector(bfjo[first_state])
selected_state.bind("change", function() { var state = $("#selected_state option:selected").val(); var state_object = bfjo[state];
fill_locale_selector(state_object);
} )
/* var fill_household_selector = function(locale_object) { var selected_household = jQuery("#selected_household");
selected_household.html("");
for (var household in locale_object) { var option = jQuery('
fill_household_selector(bfjo[first_state][first_locale]) */
selected_locale.bind("change", function() { var state = $("#selected_state option:selected").val(); var locale = $("#selected_locale option:selected").val(); var locale_object = bfjo[state][locale];
//fill_household_selector(locale_object); } )
enable_disable_locale = function() { var household = $("#selected_household option:selected").val(); if (household === '1P0C' || household === '2P0C') { selected_locale.attr('disabled', 'disabled'); } else { selected_locale.attr('disabled', ''); } } selected_household.bind("change", function() { enable_disable_locale(); } ); enable_disable_locale();
jQuery("#calculate_this").bind("submit", function() {
var state = $("#selected_state option:selected").val(); var locale = $("#selected_locale option:selected").val(); var household = $("#selected_household option:selected").val(); var salary = parseInt($("#input_salary").val());
var annual_living_wage = bfjo[state][locale][household]; console.log(state); console.log(locale); console.log(household); console.log(annual_living_wage); var hourly_for_living = annual_living_wage / months_per_year / average_weeks_in_a_month / hours_worked_at_full_time;
var hours_to_live_per_month = annual_living_wage / months_per_year / median_fast_food_worker_wage; var weeks_to_live_per_month = hours_to_live_per_month / hours_worked_at_full_time;
var salary_monthly = salary / months_per_year; var hours_to_salary_monthly = salary_monthly / median_fast_food_worker_wage; var weeks_to_salary_monthly = hours_to_salary_monthly / hours_worked_at_full_time;
var hours_living_a_week = hours_to_live_per_month / average_weeks_in_a_month; var hours_salary_a_week = hours_to_salary_monthly / average_weeks_in_a_month;
var commify = function(number) { while (/(d+)(d{3})/.test(number.toString())){ number = number.toString().replace(/(d+)(d{3})/, '$1'+','+'$2'); } return number; }
var salary_string = commify(salary); var yearly_living_wage_string = commify(annual_living_wage); /* while (/(d+)(d{3})/.test(salary_string.toString())){ salary_string = salary_string.toString().replace(/(d+)(d{3})/, '$1'+','+'$2'); } while (/(d+)(d{3})/.test(yearly_living_wage_string.toString())){ yearly_living_wage_string = yearly_living_wage_string.toString().replace(/(d+)(d{3})/, '$1'+','+'$2'); } */
jQuery("#calculated").show(); jQuery("#fast_food_calculator_hours").text(Math.round(hours_to_live_per_month)); jQuery("#fast_food_calculator_state").text(state_abbr[state]); jQuery("#fast_food_calculator_state2").text(state_abbr[state]); if (household === "1P0C" || household === "2P0C") { jQuery("#fast_food_calculator_locale").text(''); jQuery("#fast_food_calculator_locale2").text(''); } else { jQuery("#fast_food_calculator_locale").text(locale.replace(/,.*$/, '') + ','); jQuery("#fast_food_calculator_locale2").text(locale.replace(/,.*$/, '') + ','); } jQuery("#salary").text(salary_string); jQuery("#fast_food_calculator_time").text(Math.round(hours_to_salary_monthly));
jQuery("#living_hours_per_week").text(Math.round(hours_living_a_week)); jQuery("#living_hours_per_week2").text(Math.round(hours_living_a_week));
jQuery("#salary_hours_per_week").text(Math.round(hours_salary_a_week)); jQuery("#fast_food_calculator_living_wage_annual").text(yearly_living_wage_string);
jQuery("#mc_d_customers_served").text( commify( Math.round( Math.round(hours_living_a_week) * mcD_served_per_hour ) ) ); jQuery("#mc_d_money_earned").text( commify(Math.round(Math.round(hours_living_a_week) * mcD_earned_per_hour)) );
jQuery("#big_mac_count").text( commify( Math.round( Math.round(hours_living_a_week) * mcD_earned_per_hour / cost_of_big_mac ) ) );
console.log(hourly_for_living); var hourly_for_living_clean = Math.round(hourly_for_living * 100) .toString().replace(/(d+)(d{2})/, '$1'+'.'+'$2'); jQuery("#living_wage_hourly").text(hourly_for_living_clean);
return false;
}
)