Multiple independent LED speed control code via multiple potentiometers

Ok, I have it one potentiometer controlling 4 digital outputs:

/*
  Analog Input
 Demonstrates analog input by reading an analog sensor on analog pin 0 and
 turning on and off a light emitting diode(LED)  connected to digital pin 13. 
 The amount of time the LED will be on and off depends on
 the value obtained by analogRead(). 
 
 The circuit:
 * Potentiometer attached to analog input 0
 * center pin of the potentiometer to the analog pin
 * one side pin (either one) to ground
 * the other side pin to +5V
 * LED anode (long leg) attached to digital output 13
 * LED cathode (short leg) attached to ground
 
 * Note: because most Arduinos have a built-in LED attached 
 to pin 13 on the board, the LED is optional.
 
 
 Created by David Cuartielles
 modified 30 Aug 2011
 By Tom Igoe
 
 This example code is in the public domain.
 
 http://arduino.cc/en/Tutorial/AnalogInput
 
 */

int sensorPin = A0;    // select the input pin for the potentiometer
int ledPin = 0;      // select the pin for the LED
int sensorValue = 0;  // variable to store the value coming from the sensor

int sensorPin1 = A1;
int ledPin1 = 1;

int sensorPin2 = A2;
int ledPin2 = 2;

int sensorPin3 = A3;
int ledPin3 = 3;

void setup() {
  // declare the ledPin as an OUTPUT:
  pinMode(ledPin, OUTPUT);  
  pinMode(ledPin1, OUTPUT);
  pinMode(ledPin2, OUTPUT);
  pinMode(ledPin3, OUTPUT);
  
}

void loop() {
  // read the value from the sensor:
  sensorValue = analogRead(sensorPin); 
  digitalWrite(ledPin, HIGH);  
  digitalWrite(ledPin1, HIGH); 
 digitalWrite(ledPin2, HIGH); 
digitalWrite(ledPin3, HIGH);  
  // stop the program for <sensorValue> milliseconds:
  delay(sensorValue);          
  // turn the ledPin off:        
  digitalWrite(ledPin, LOW); 
digitalWrite(ledPin1, LOW);     
digitalWrite(ledPin2, LOW);   
digitalWrite(ledPin3, LOW);   
  // stop the program for for <sensorValue> milliseconds:
  delay(sensorValue);           


  
}

Any thoughts on how to have each output read from a different analog signal / sensorPin?