Animation end trigger

I need help with a cutscene in unity pro, basically what I am trying to do is after a the camera aminimation is done, I want it to go to the next scene, which is named Horror. Basically this cutscene is just you getting up from the ground whilst breathing heavily (From a first person perspective) Help!

Here is a concept to start you off.

var hold : int = 5; //Set this for how long your animation is

function Update () {

//Play animation

wait()

Application.LoadLevel(); //Your scene

}

function wait () {

yield WaitForSeconds ((hold));

}