function sponsors_initCallback(carousel) {
	// Pause autoscrolling if the user moves with the cursor over the clip.
	carousel.clip.hover(function() {
		carousel.stopAuto();
	}, function() {
		carousel.startAuto();
	});
};

$(document).ready(function() {
	$('.jcarousel-skin-aog').jcarousel({
			auto: 2,
			animation: 1500,
			scroll: 5,
			wrap: 'last',
			initCallback: sponsors_initCallback
	});
});
