Bind Multiple Events Simultaneously with jQuery

It is sometimes necessary to bind two or more events to an element that utilize the same function. Using jQuery it might look something like this (where 'fn' is a function reference).

$("a")

    .bind("focus", fn)

    .bind("mouseover", fn);

That isn't terrible but it would be nice if we could write it like this.

$("a").bind("focus mouseover", fn);

Well, now [...]