[jQuery] Several callbacks?

[jQuery] Several callbacks?


I've this code:
    $(".page").fadeTo(fadeSpeed,0,function() {
        alert("test");
    });
I've 3 elements with class "page". Because of that, I got 3 alerts.
I'm only interested in one alert when all .page is faded out. How can
I?