monthly.futureSavings = function( data ) {
  return parseFloat( data.emergencySavings || 0 ) +
         parseFloat( data.longTermSavings || 0 );
};