$(function() {


	if (jQuery("#slideShow").length) {
		jQuery("#slideShow").cycle({
			fx: 'fade',
			speed: 'fast',
			timeout: 4000,
			pager: '#navSlideShow',
			pagerEvent: 'click',
			pagerAnchorBuilder: function(idx, slide) {
				return '#navSlideShow li:eq(' + (idx) + ') a';
			}
		});
	}


	$("#selection").cycle({
			fx: 'scrollLeft',
			speed: 'fast',
			timeout: 6000,
			pager: '#controler',
			pagerEvent: 'click',
			pagerAnchorBuilder: function(idx, slide) {
				return '#controler li:eq(' + (idx) + ') a';
			}
		});	


	
	$("#artistes_compile").cycle({
			fx: 'fade',
			timeout: 4000
		});	

});

