// JavaScript Document

$(document).ready( function(){
	setTimeout("initCarousel()", 1000);
	
	$("#actualites .scrollable").scrollable({circular:true,mousewheel:true}).navigator().autoscroll({interval:3000});

} ); 

function initCarousel(){
	//alert("toto");
	if ($("#featureCarousel").length) {
		$("#featureCarousel").featureCarousel({
			// include options like this:
			// (use quotes only for string values, and no trailing comma after last option)
			autoPlay: 3000,
			largeFeatureWidth:230,
			smallFeatureWidth: 220,
			largeFeatureHeight:290,
			smallFeatureHeight: 280,
			animationEasing: 'swing'
			// option: value
		});
		$("#featureCarousel").fadeIn("slow");
	}
}







