/*
**
*/
$(document).ready(function(){
	$('#diapo').cycle({ 
		fx:     'fade', 
		speed:  1000, 
		timeout: 0, 
		next:   '#next', 
		prev:   '#prev' 
	});
	// list suivante
	$('#next').css('cursor','pointer');
	$('#prev').css('cursor','pointer');
	
	// fonction nav image ex : 1/5 //
	var cpt = 0;
	var nb_c = 1;
	
	$('#diapo').find('img').each(function(){
		cpt++;
		});
		
	$('#next').click(function(){
		if(nb_c >0 && nb_c < cpt){
			nb_c = nb_c +1;
			$('#nb_courant').html(nb_c);
		}
		else{
			if(nb_c == cpt){
				nb_c = 1;
				$('#nb_courant').html(nb_c);
			}
		}
	});
	
	$('#prev').click(function(){
		if(nb_c > 1 ){
			nb_c--;
			$('#nb_courant').html(nb_c);
		}
		else{
			if(nb_c == 1){
				nb_c = cpt;
				$('#nb_courant').html(nb_c);
			}
		}
	});
	
	$('#nb_courant').html(nb_c);
	$('#nb_total').html(cpt);
	
	
	
	
});
