jQuery Validation Plugin Working with IE only

jQuery Validation Plugin Working with IE only

Hey everybody,

I've been working on a form and i'm getting a very weird issue, it's working perfectly with IE8, but it doesn't work with Firefox, nor Opera nor Chrome nor Safari :S

here's the JS Code:
jQuery(document).ready(function(){
//    defining the rules and the error messages of the validation
   jQuery("#frmEmployees").validate({
      rules: {
            LoginName:{ required: true, email: true },
            Password:{ required: true },
            LastName:{ required: true },
            PreName:{ required: true },
            Gender:{ required: true },
            BirthDate:{ required: true, date: true },
            Phone_2:{ required: true, Mobiel: true },
            Email_1:{ required: true, email: true },
            Address:{ required: true },
            HouseNumber:{ required: true, Num: true },
            PostalCode:{ required: true, Postcode: true },
            City:{ required: true },
            Country:{ required: true }
         },
      messages:{
            LoginName:{ required: " ", email: "Geen geldig e-mailadres." },
            Password:{ required: " " },
            LastName:{ required: " " },
            PreName:{ required: " " },
            Gender:{ required: " " },
            BirthDate:{ required: " ", date: " " },
            Phone_2:{ required: " ", Mobiel: " " },
            Email_1:{ required: " ", email: " " },
            Address:{ required: " " },
            HouseNumber:{ required: " ", Num: " " },
            PostalCode:{ required: " ", Postcode: " " },
            City:{ required: " " },
            Country:{ required: " " }
      },   
//          calling the css class once everything is allright!
      success: function(label) {
      label.html(" ").addClass("checked");
      }   
   })
});


Can anyone please help with this? because i've been trying to figure it out for a whole day now but still nothin!
thanks in advance.