Magento Ajax Login/Register Plugin jquery-1.10.2 incompatibility.

Magento Ajax Login/Register Plugin jquery-1.10.2 incompatibility.

Hi there,
I've installed a module for ajax login/register in my Magento store. It works fine, it includes its own jQuery library (1.7.2) and does all the work perfectly. The problem is: I already have a jQuery library (1.10.2) in this store, and the cohabitation of the two libraries raises some performance issues. For my luck, the module offers the option of include or not include the jQuery library, but, when I choose not to include the 1.7.2 library and keep only the 1.10.2, debugging indicates some issues I don't know how to solve.

Functions like the following happens to indicate a "'undifined' is not a function" issue.
  1. $('a[href*="customer/account/create"], .new-users button').live('click', function(){
  2.     animateShowWindow('register');
  3.     return false;
  4. });
I hope that there is some jQuery library incompatibility you could find easier than me and my frustrated tries.