var budget = new Array(5);
budget[0] = 0.6; // <100K
budget[1] = 0.8; // 100-250K
budget[2] = 1.0; // 250-500K
budget[3] = 1.0; // 500-1M
budget[4] = 1.2; // 1-2M
budget[5] = 1.5; // 2M-3M
budget[6] = 1.5; // 3M-10M
budget[7] = 1.5; // 10M+

var complexity = new Array(3);
complexity[0] = 0.65; // Low
complexity[1] = 1.15; // Medium-Low
complexity[2] = 1.50; // Medium-High
complexity[3] = 1.80; // High

var scope = new Array(5);
scope[0] = new Array(8); // <50
scope[1] = new Array(8); // 50-100
scope[2] = new Array(8); // 100-150
scope[3] = new Array(8); // 150-250
scope[4] = new Array(8); // 250-500
scope[5] = new Array(8); // 500+

//Note: scope[y][x] = scope[# of transactions][type of services]

//Bank Recs
scope[0][0] = 1; // <50
scope[1][0] = 1; // 50-100
scope[2][0] = 1; // 100-150
scope[3][0] = 1; // 150-250
scope[4][0] = 1; // 250-500
scope[5][0] = 1; // 500+

//Monthly Reports
scope[0][1] = 1; // <50
scope[1][1] = 1; // 50-100
scope[2][1] = 1; // 100-150
scope[3][1] = 1; // 150-250
scope[4][1] = 1; // 250-500
scope[5][1] = 1; // 500+

//Coordinated Payroll
scope[0][2] = 1; // <50
scope[1][2] = 1.5; // 50-100
scope[2][2] = 2; // 100-150
scope[3][2] = 2; // 150-250
scope[4][2] = 2; // 250-500
scope[5][2] = 3; // 500+

//Pay Bills
scope[0][3] = 2; // <50
scope[1][3] = 4; // 50-100
scope[2][3] = 5; // 100-150
scope[3][3] = 6; // 150-250
scope[4][3] = 7; // 250-500
scope[5][3] = 8; // 500+

//Record Credit Card Expenses
scope[0][4] = 2; // <50
scope[1][4] = 4; // 50-100
scope[2][4] = 5; // 100-150
scope[3][4] = 6; // 150-250
scope[4][4] = 7; // 250-500
scope[5][4] = 8; // 500+

//AR - Tracking Earned Income
scope[0][5] = 2; // <50
scope[1][5] = 3; // 50-100
scope[2][5] = 3; // 100-150
scope[3][5] = 3; // 150-250
scope[4][5] = 5; // 250-500
scope[5][5] = 8; // 500+

//Donation Recording
scope[0][6] = 2; // <50
scope[1][6] = 4; // 50-100
scope[2][6] = 5; // 100-150
scope[3][6] = 6; // 150-250
scope[4][6] = 7; // 250-500
scope[5][6] = 8; // 500+

//Donation Receipts
scope[0][7] = 3;  // <50
scope[1][7] = 6;  // 50-100
scope[2][7] = 8;  // 100-150
scope[3][7] = 9;  // 150-250
scope[4][7] = 10; // 250-500
scope[5][7] = 12; // 500+

//Deposits
scope[0][8] = 2;  // <50
scope[1][8] = 4;  // 50-100
scope[2][8] = 5;  // 100-150
scope[3][8] = 6;  // 150-250
scope[4][8] = 7;  // 250-500
scope[5][8] = 8;  // 500+


//SETUP BANDS
var band = new Array(12);
band[0]  = new Array(3); // 100
band[1]  = new Array(3); // 101
band[2]  = new Array(3); // 102
band[3]  = new Array(3); // 103
band[4]  = new Array(3); // 104
band[5]  = new Array(3); // 105
band[6]  = new Array(3); // 106
band[7]  = new Array(3); // 107
band[8]  = new Array(3); // 108
band[9]  = new Array(3); // 109
band[10] = new Array(3); // 110
band[11] = new Array(3); // 111
band[12] = new Array(3); // 112


//Note: band[y][x] = band[band#][type of services]

//Min Hours
band[0][0]  = 4;     // 100
band[1][0]  = 4;	 // 101
band[2][0]  = 8;	 // 102
band[3][0]  = 12;	 // 103
band[4][0]  = 16;	 // 104
band[5][0]  = 20;	 // 105
band[6][0]  = 30;	 // 106
band[7][0]  = 40;	 // 107
band[8][0]  = 45;	 // 108
band[9][0]  = 50;	 // 109
band[10][0] = 80;	 // 110
band[11][0] = 120;	 // 111
band[12][0] = 150;	 // 112

//Max Hours
band[0][1]  = 4;     // 100
band[1][1]  = 8;	 // 101
band[2][1]  = 12;	 // 102
band[3][1]  = 18;	 // 103
band[4][1]  = 24;	 // 104
band[5][1]  = 30;	 // 105
band[6][1]  = 40;	 // 106
band[7][1]  = 50;	 // 107
band[8][1]  = 65;	 // 108
band[9][1]  = 80;	 // 109
band[10][1] = 119;	 // 110
band[11][1] = 149;	 // 111
band[12][1] = 200;	 // 112

//Hourly Rate
band[0][2]  = 50;    // 100
band[1][2]  = 50;	 // 101
band[2][2]  = 45;	 // 102
band[3][2]  = 45;	 // 103
band[4][2]  = 40;	 // 104
band[5][2]  = 40;	 // 105
band[6][2]  = 40;	 // 106
band[7][2]  = 40;	 // 107
band[8][2]  = 40;	 // 108
band[9][2]  = 40;	 // 109
band[10][2] = 36;	 // 110
band[11][2] = 32;	 // 111
band[12][2] = 28;	 // 112


//Band Name
band[0][3]  = "Half Day per Month";        	// 100
band[1][3]  = "Half to Full Day per Month";	// 101
band[2][3]  = "Full Day per Month";		// 102
band[3][3]  = "Two Days per Month";	// 103
band[4][3]  = "Two and a Half Days per Month";		// 104
band[5][3]  = "Three Days per Month";	// 105
band[6][3]  = "Day a Week";	// 106
band[7][3]  = "Day and a Half a Week";			// 107
band[8][3]  = "Two Days a Week";		// 108
band[9][3]  = "Three Days a Week";		// 109
band[10][3] = "Half Time Person";	 	// 110
band[11][3] = "Thirty Hours a Week";		// 111
band[12][3] = "Full Time Person";		// 112



