/**
 * Contains options for the "Landscape Area" field
 */
var aLandscapeArea = [
    5000,
    10000,
    15000,
    20000,
    25000,
    30000,
    35000,
    40000,
    [43560, '1 Acre'],
    [87120, '2 Acres'],
    [217800, '5 Acres']
];

/**
 * Contains options for the "Water Rate" field
 */
var aWaterRate = [
    '2.00',
    '2.50',
    '3.00',
    '3.50',
    '4.00',
    '4.50',
    '5.00',
    '5.50',
    '6.00',
    '6.50',
    '7.00',
    '7.50',
    '8.00'
];

/**
 * Contains options for the "Unit Measure" field
 */
var aUnitMeasure = [
    'KGAL',
    'HCF'
];

/**
 * Contains options for the "100% Eto (in inches)"
 * [correlative number, county]
 */
var aEto = [
    [35, 'San Francisco'],
    [38, 'Santa Cruz'],
    [40, 'Marin'],
    [43, 'San Mateo'],
    [44, 'Alameda'],
    [45, 'Santa Clara'],
    [46, 'Monterey'],
    [46, 'Contra Costa']
];

/**
 * Annual rate of increase
 */
var fAnnualRateOfInc = 0.09;

/**
 * Periods of project, percent waste (%), years to subtract from period length
 */
var aPeriods = [
    [3, 25, 2],
    [5, 42, 3],
    [10, 50, 5]
];





