function mycarousel_initCallback(carousel)
{
	carousel.clip.hover(function() { carousel.stopAuto();}, function() { carousel.startAuto();});
}

jQuery(document).ready(function() {
 jQuery('#features').jcarousel({
 auto: 8,
 wrap: 'last',
 scroll: 1,
 initCallback: mycarousel_initCallback
});
});