function getBathDipPrices() {
   
    var bathdipprices = new Array(3);
    bathdipprices[0] = new Array(3);
    bathdipprices[1] = new Array(3);
    bathdipprices[2] = new Array(3);
    bathdipprices[0][0] = '14.00';  // 0-24 lbs - Bath
    bathdipprices[0][1] = '16.00';  // 0-24 lbs - Dip
    bathdipprices[0][2] = '26.00';  // 0-24 lbs - Bath & Dip
    bathdipprices[1][0] = '16.00';  // 25-49 lbs - Bath
    bathdipprices[1][1] = '18.00';  // 25-49 lbs - Dip
    bathdipprices[1][2] = '30.00';  // 25-49 lbs - Bath & Dip    
    bathdipprices[2][0] = '18.00';  // 50+ lbs - Bath
    bathdipprices[2][1] = '20.00';  // 50+ lbs - Dip
    bathdipprices[2][2] = '34.00';  // 50+ lbs - Bath & Dip 
    
    return bathdipprices;
}

function getWeightCategory(weight) {
   
    var weightcategory = 2; 
    if(weight > 0 && weight <= 24) { weightcategory = 0; }
    if(weight >= 25 && weight <= 49) { weightcategory = 1; }
   
    return weightcategory;
}

function getPlaytimePrice() {
   return 3.00;
}

function getCostPerDayCategory(weight) {
    
    costperdaycategory = 0;
   
    if(weight < 10) { costperdaycategory = 0; }
    if(weight >= 10 && weight < 25) { costperdaycategory = 1; }
    if(weight >= 25 && weight < 50) { costperdaycategory = 2; }
    if(weight >= 50 && weight < 100) { costperdaycategory = 3; }
    if(weight >= 100) { costperdaycategory = 4; }
    
    return costperdaycategory;
    
}

function getPerDayCosts() {
   
   var perday = new Array(5);
    perday[0] = 13.50; // 0-9 lbs
    perday[1] = 14.00; // 10-24 lbs
    perday[2] = 14.50; // 25-49 lbs
    perday[3] = 15.00; // 50-99 lbs
    perday[4] = 15.50; // 100+ lbs
    
    return perday;
   
}

function getCatPerDayCost() {
   return 10.50;
}