/*
	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": [
	[6050, 0, .1], // row 1
	[10425, 437.50, .15], // row 2
	[36050, 4281.25, .25], // row 3
	[67700, 12193.75, .27], // row 4
	[84450, 16716.25, .30], // row 5	
	[87700, 17691.25, .28], // row 6
	[173900, 41827.25, .33],  // row 7
	[375700, 108421.25, .35] // row 8	
	],
	"MARRIED_TABLE": [
	[13750, 0, .1], // row 1
	[24500, 1075, .15], // row 2
	[75750, 8762.50, .25], // row 3
	[94050, 13337.50, .27], // row 4
	[124050, 21437.50, .25], // row 5	
	[145050, 26687.50, .28], // row 6
	[217000, 46833.50, .33], // row 7
	[381400, 101085.50, .35] // row 8	
	],
	"PERSONAL_ALLOWANCE": 3650, // multiply number of allowances by this number, subtract from wages for tax calc
	"FICA_OASDI_PCT": .062, // 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
}