Fade between 2 scenes whilst using a timer

Hi on my program Iv’e made a javascript which allows me to change between one scene to another with the use of a time. However I now want to use this same script so it changes scene with a time limit however I also want it to fade in between these scenes how would I be able to do this?

#pragma strict

function Start () {
   
    yield WaitForSeconds (6);
    Application.LoadLevel ("Game");
}

function Update () {

}

bump

Anyone?

??

This was answered here in the other thread you posted here.