[jQuery] validate.js errors

[jQuery] validate.js errors


I'm working with the validate.js plug-in from Jorn. I can't seem to
get it to work, and was wondering if anyone else has had any issues.
This is what I have:
http://admissionstest.unl.edu/daily_visit/schedule/?type=High%20School%20Senior
(code below)
In firebug, I get an error:
Window schedule has no name assigned (line 569)
(this shows up 209 times!)
The form also is submitted, and no validation is done. (clearly not
what is supposed to happen).
Here is my jquery code:
$(document).ready(function() {
$.validator.setDefaults({
        debug: true
    });
    $("#cvRegistrationForm").validate({
        rules: {
            FirstName: "required",
            LastName: "required",
            Street1: "required",
            City: "required",
            State: "required",
            Zip: "required",
            Email: {
                required: true,
                email:true
            },
            Birthdate: {
                required: true,
                date: true
            },
            SchoolName: "required",
            SchoolCity: "required",
            SchoolState: "required",
            HighSchoolGradYear: "required"
        },
        messages: {
            FirstName: "Please enter your first name",
            LastName: "Please enter your last name",
            Street1: "Please enter your street",
            City: "Please enter your city",
            State: "Please select your state",
            Zip: "Please enter your zip code",
            Email: "Please enter a valid e-mail address",
            Birthdate: "Please enter your birthdate in correct format",
            SchoolName: "Please enter your school name",
            SchoolCity: "Please enter your school city",
            SchoolState: "Please enter your school state",
            HighSchoolGradYear: "Please enter your grad year"
        }
    });
});
And my form fields (partial list)...
<li>
<label for="FirstName">First Name<em>*</em></label>
<input name="FirstName" id="FirstName" type="text" /