Just like Al and Travis's teams, we've been using "AiDi"s through the various analog input ports for some years now. Like WildStang (heck we probably got the idea from you guys Al

) we use a rotating 6 to 10 position switch with resistors in series. And, like Travis pointed out, we leave plenty of "room" for selecting which position we want. Here's a sample of how we do it.
Code:
const uint8 AUTONOMOUS_ANALOGS[7] = {6, 140, 160, 190, 210, 235, 255};
uint8 AnalogToDigital(uint8 value, uint8 analogs[])
{
uint8 loop;
for (loop = 1; loop <= analogs[0]; loop++)
if (value <= analogs[loop])
return ( analogs[0] - loop ) ;
return 255;
}
The values in the array are the max loop counter, followed the boundaries between which the actual inputs will lie.
Eric