function mycarousel_initCallback(carousel) {
	$('.jcarousel-control a').bind('click', function() {
		carousel.stopAuto();
		carousel.scroll(jQuery.jcarousel.intval($(this).text()));
		return false;
	});
	carousel.clip.hover(function() {
		carousel.stopAuto();
	},
	function() {
		carousel.startAuto();
	});
	};

// Ride the carousel...
$(document).ready(function() {
	$("#mycarousel").jcarousel({
		scroll: 1,
		auto: 5,
		wrap: 'last',
		animation: 1000,
		initCallback: mycarousel_initCallback,
		buttonNextHTML: null,
		buttonPrevHTML: null
	});
});

