$(document).ready(function() {
 	// jQuery Cycle	
	if($('#slideActus').length > 0){
		$('#slideActus').cycle({ 
			fx:'fade',
			speed:500
		});
	}
});

// smoothDivScroll
$(window).load(function() {
	if($('div.makeMeScrollable').length > 0){
		$("div.makeMeScrollable").smoothDivScroll({ 
			autoScroll: "onstart" , 
			autoScrollDirection: "endlessloopright",  //backandforth
			autoScrollStep: 1,
			autoScrollInterval: 15,	
			//startAtElementId: "startAtMe", 
			visibleHotSpots: "always"
		});
		
		$('div.makeMeScrollable').each(function(){
			if($(this).find('.scrollableArea a').length > 3)
				$(this).find('.scrollingHotSpotLeft').show();
		});
	}
	
	$('.listeDiaporama a[id^="galerie"]').click(function(){
		
		var num = $(this).attr('id').replace('galerie', '');
		$('#thumb_'+num).click();
	});
	
});
