I have this code in my theme:
<script type="text/javascript">             
(function($){
    $(document).ready(function(){                                
        var testimonials = $(".single-testimonial_<?php echo $ID; ?   >").find('ul').children().length;                                  
        $(".single-testimonial_<?php echo $ID; ?>").jCarouselLite({
          btnNext: ".gon_<?php echo $ID; ?>",
          btnPrev: ".pon_<?php echo $ID; ?>",
          auto:3100,                
          visible: testimonials
        });
    });
})(jQuery);
</script>
PHP FILE: http://codetidy.com/8399/
What should I add, to make it stop the animation on hover. I'm not into jQuery, so please, write the exact code if you know it.
Thanks!