[jQuery] Quick Syntax Error Check

[jQuery] Quick Syntax Error Check


IE7 is telling me the following script has a syntax error and I have
tried to find it but haven't located it . . . yet:
(function($){
    $().ready(function() {
        // validate the comment form when it is submitted
        $("#commentForm").validate();
        // validate signup form on keyup and submit
        $("#signupForm").validate({
            rules: {
                email: {
                    required: true,
                    email: true
                },
            },
            messages: {
                email: "Please enter a valid email address",
            }
        });
    });
})(jQuery);
I'm going to keep looking but maybe somebody else will be able to find
it before me. Firefox doesn't seem to have a problem with it.