accelerometer programming

How do I check the accelerometer with the analogread?

PAY ATTENTION
That question was answered in Reply#17

 #include <AcceleroMMA7361.h>

AcceleroMMA7361 accelero;
int x;
int y;
int z;

void setup()
{
  Serial.begin(9600);
  accelero.begin(13, 12, 11, 10, A0, A1, A2);
  accelero.setARefVoltage(3.3); //sets the AREF voltage to 3.3V
  accelero.setSensitivity(LOW); //sets the sensitivity to +/-6G
  accelero.calibrate();  
}

void loop()
{
  x = accelero.getXVolt();
  y = accelero.getYVolt();
  z = accelero.getZVolt();
  Serial.print("\nx: ");
  Serial.print(x);  
  Serial.print("mV\ty: ");
  Serial.print(y);  
  Serial.print("mV\tz: ");
  Serial.print(z);
  Serial.print("mV");
  delay(500); //make it readable
}