// Settings for the lipp calculator
//
// This is the array of jobs.  Each job has a name, salary and api. The name
// is what is displayed in the drop down box, and the salary and api are the 
// default values for this job.  When the user chooses the job, the salary and
// api will be changed to these defaults (but can always be changed by the user.
// You specify these things as shown below.  To add or change job descriptions
// just add or change the comma seperated list below.
var lipp_jobs = new Array(
	{name:"Fellowship",salary:35000, api:.00},
	{name:"Legal Services Attorney",salary:40000, api:.03},
	{name:"Assistant District Attorney",salary:45000,api:.03},
	{name:"Attorney at Small Private Firm",salary:60000,api:.03}, 
	{name:"Attorney, U.S. Department of Justice",salary:54272,api:.075},
	{name:"In-House Counsel",salary:80000,api:.06}
);
// This is the comma seperated list of annual salary increases that will always be
//	shown in the drop down menu.
var apis = new Array(0,.03,.05,.07,.10);
// This is where you can set the salary thresholds and salary rates.  The first salary
// threshold should always be 0.  For debt between salary threshold i and i+1, the 
// expected contribution is salary_rate i.  The final salary rate is for everything
// after the last threshold.  You can have as many thresholds as you want, as long as
// each threshold has a rate.
// Make sure the first one is 0
var salary_thresholds = new Array(0, 42000, 48000);
//  Must correspond to the salary thresholds above
var salary_rates = new Array(0, .2, .4);
// This is the rate of increase for the salary thresholds per year
var base_rate = .03;
// These are the other misc settings
// The maximum amount of lipp eligible undergrad debt allowed
var max_other_debt = 30000;
// This is what the current year
var year_zero = 2010;
// This is the assumed (annual) interest rate of the loans
var interest_rate = .075;
