$(document).ready(function(){

	$(".diaporama").diaporama({
		animationSpeed: "slow",
		delay:5,
		debut:"img1"
	});
	
	$("#selector > a").click(function(){
		$(".diaporama").diaporama.stop();
		$('.diaporama li').each(function(){
			$(this).removeClass('active');
		});
		$('#selector a').each(function(){
			$(this).removeClass('activeSlide');
		});
		var currentId = $(this).attr("name");
		$(".diaporama").diaporama({
			animationSpeed: "slow",
			delay:5,
			controls:false,
			debut:currentId
		});
	});
	
	

});