// Carousel

$(document).ready(function() {
	$('#mycarousel').jcarousel({
		scroll: 1,
		auto: 0.01,
		animation: 1500,
		wrap: 'circular',
		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();
	});
};


