jquery.timers-1.2.js reset?

jquery.timers-1.2.js reset?

I'm using this plugin to dynamycally slide through some li's every 10 seconds. Alternatively, the user can click on a link to go to the desired tab. Problem is, if there's 1 second remaining and the user clicks, the tab will only be visible for a second and then change. I need to find a way to reset the timer on click, but haven't have luck. Here's the code:

  1. $("#slider .tabs li a").live('click', function() {
  2.       ... some function ...
  3. });



  4. /* Automating */
  5. $("#slider").everyTime(10000,function(i) {
  6.       ... some function ...
  7. });

Is there an easy way to reset the counter of the second function when the first function is called?