Thanks for the help on that guys. Perhaps I had been focusing on it for too long because my mind wasn't working. What I ended up doing was taking the reciprocal of the .09265 to get ~10.79 and then using that as a constant once I inflated it appropriately to get rid of the decimcal places. So I ended up taking the ADC reading, subtracting the 0 g reading point, multiplying that by 100, and then dividing by 1079.... errr, something along those lines because I'm not in front of my code right now.
What was wierd was that I had to trim the 0 g point in the code. It says plain as day in the datasheet that 1.4 Volts is the 0g point on any axis. 2.048/255*174 = 1.397, so I don't know why I had to use about 190 instead of 174 to reflect 1g when it was just sitting there, or turned such that any particular axis was in plane with the acceleration of gravity. That one kind of baffled me, but it could be that when I reflowed the board the accelero didn't end up perfectly in plane with the board.
What's also wierd is that each axis reads as expected (after trimming the 0 g point) individually, but when I try to read all three axis I show the same reading. I'm using a "MOVLW" and "MOVWF ADCON0" to select the channels, so I'm not sure why it would be doing this. At the top of the loop I am incrementing a file called "AXIS LOOP." Then the code tests for a one using subtraction and and bit test on the zerobit. If it's one, it sends it to read the X, if it's two, it reads the Y, if it's three it reads the Z and then the Z axis portion of the code clears the file to start it over again. Perhaps I just need to read up and see if there are any quirks with this PIC in terms of ADC channel selection.