// JavaScript Document
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();
	});
};

$(document).ready(function() {
	$('#mycarousel').jcarousel({
		auto: 2,
		size:7,
		scroll: 1,
		wrap: 'last',
		initCallback: mycarousel_initCallback
	});
	$('#mycarousel a').lightBox({fixedNavigation:true});
});
