/*
	Contains data found in IRS Publication "Employer's Tax Guide" for the current year.  Publications can be found at: http://www.irs.gov/publications/index.html
*/
// This data is for the year: 2010
var Calculators = Calculators || {};
Calculators.tax = Calculators.tax || {};

Calculators.tax.CurrentYearTaxData = {
	"SINGLE_TABLE": [
	[2100, 0, .1], // row 1
	[10600, 850, .15], // row 2
	[36600, 4750, .25], // row 3
	[85700, 17025, .28], // row 4
	[176500, 42449, .33], // row 5	
	[381250, 110016.50, .35] // row 6	
	],
	"MARRIED_TABLE": [
	[7900, 0, .1], // row 1
	[24900, 1700, .15], // row 2
	[76900, 9500, .25], // row 3
	[147250, 27087.50, .28], // row 4
	[220200, 47513.50, .33], // row 5	
	[387050, 102574, .35] // row 6	
	],
	"PERSONAL_ALLOWANCE": 3700, // multiply number of allowances by this number, subtract from wages for tax calc
	"FICA_OASDI_PCT": .042, // decimal value of % at which earnings are taxed for OASDI (Social Security) up to FICA_MAX
	"FICA_MAX": 106800, // Maximum taxable earnings for FICA OASDI
	"MEDICARE_WITHOLDING": .0145 // decimal value of % at which earnings are taxed for medicare, no cap
}
