Running 2 operations at once

Guys,

Im sorry to be such a pain in the ass but i realised i posted the code for the LED fade instead of the LED blink. Im still trying to get my head round the code you did for me earlier, but i meant to post the blink so it was as easy as possible for me to understand.

Here is the code for the LED blink:

int ledPin = 13; // LED connected to digital pin 13

void setup() // run once, when the sketch starts
{
pinMode(ledPin, OUTPUT); // sets the digital pin as output
}

void loop() // run over and over again
{
digitalWrite(ledPin, HIGH); // sets the LED on
delay(1000); // waits for a second
digitalWrite(ledPin, LOW); // sets the LED off
delay(1000); // waits for a second
}

Ive tried to adjust this to run 2 leds using the milli function but still can get anything to work.

Would you be kind enough again Mike to adjust this blink code using the milli functions to flash 2 LEDS independantly then i might be able to follow whats going on and translate that into whats happening in the LED fade code you did for me earlier.

Thanks in advance.

VR