Conflict between jquery lightbox_me and validate plugin for web forms

Conflict between jquery lightbox_me and validate plugin for web forms

I use two jquery plugin and I have a conflict. The plugins are:

The lighbox and validation works fine but when I fire the lightbox, the validation doesn't work. Note that I use ASP.NET Web Forms.

I have the following code:

HTML:
  1. <form id="form1" runat="server"> 
  2. <a class="ct">Click me!</a> 
  3. <div class="form" id="contact" style="display:none;"> 
  4. <input type="text" id="name" name="name" title="X" class="required textbox" /> 
  5. <input type="submit" id="submit" class="submit contact" value="Submit" /> 
  6. </div> 
  7. </form>
JS:
  1. $(function () { 
  2.       $(document).on("click", "a.ct", function (e) { 
  3.             $('#contact').lightbox_me({ centered: true, closeClick: false, closeEsc: false }); 
  4.       e.preventDefault(); 
  5.       }); 
  6. }); 
  7. $(function () { 
  8.       $("#form1").validateWebForm(); 
  9. });

and I include the following files:

Thank you