$(document).ready(function(){

	jQuery('#latestusers').jcarousel({
        auto: 2,
		scroll: 1,
        wrap: 'last',
        initCallback: mycarousel_initCallback
    });

});


function mycarousel_initCallback(carousel)
{
    // Pause autoscrolling if the user moves with the cursor over the clip
    carousel.clip.hover(function() {
        carousel.stopAuto();
    }, function() {
        carousel.startAuto();
    });
};

