[jQuery] [validate] highlight effect on error

[jQuery] [validate] highlight effect on error


Hi,
When there is a error due validating and a user submit a form again
without filling the missing field, i want to appear a effect.
Therefore the user notice he forget a field. Because i know user who
dont recognize the neccessary fields. Currently I make it that way:
$("input[type=submit]").click(function () {
            $("label.error").not("label.checked").fadeOut("fast", function(){
                $(this).fadeIn("fast", function(){
                    $(this).fadeOut("fast", function(){
                        $(this).fadeIn("fast")
                    });
                });
            });
});
That genrates a simple blink effect.
But thats not pretty nice. how can i combine this effect with
validate?
I spotted the function focusInvalid. I guess thats the one to work
with but how?