jCarouselLite: Pause Scrolling on hover

jCarouselLite: Pause Scrolling on hover

I'm using jCarouselLite and everythig is working fine.
However I want that the auto scrolling paused once I hover over the carousel.

The jCarouselLite doco is saying that I can use this:
   
    $('div.carousel').trigger('pauseCarousel')

But I don't understand much about jQuery. How can I implement that pause function in the following code?:

    <script>
    jQuery(function() {   
        jQuery(".carousel").jCarouselLite({
            auto: 3000,
            speed: 1000,
            visible: 1,
            circular: true,
            autoWidth: true,
            responsive: true,
            vertical: true
       });
    });
    </script>

Thanks