// Carrousel/Actu

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

jQuery(document).ready(
	function() {
		jQuery('#actu_list').jcarousel({
			auto: 5,
			wrap: 'both',
			animation: 750,
			scroll: 1,
			buttonNextHTML: null,
			buttonPrevHTML: null,
			initCallback: mycarousel_initCallback
	});
});

jQuery(document).ready(
	function(){
		jQuery('#carrousel_data').innerfade({
			speed: 2000,
			timeout: 6000,
			type: 'sequence',
			containerheight: '380px'
	});
}); 


