﻿function soho() {
    this.houseDesc = 'Soho aluminum';
    this.houseCost = function(sizeVal) {
        switch(sizeVal) {
            case '4':
                return('21.00');
                break;
            case '6':
                return('25.00');
                break;
            default:
                return('29.00');
                break;
        }
    };
    this.mailboxDesc = 'Soho';
    this.mailboxCost = '3.00';
    this.curbDesc = 'Soho';
    this.curbCost = '2.00';
}

