var compteur = new Array();
	$(document.body).ready(function () {
	var n = $('#business > *').length;
	if(n==1) $('#business_suivant').hide();
	compteur[0] = 1;
	
	var n = $('#business2 > *').length;
	if(n==1) $('#business2_suivant').hide();
	compteur[1] = 1;
	var n = $('#cestqui > *').length;
	if(n==1) $('#cestqui_suivant').hide();
	compteur[2] = 1;
	});
	function suivant(bloc,num){
		var n = $('#'+bloc+' > *').length;
		compteur[num]++;
		for(i=1;i<=n;i++){
			if(compteur[num]==i) $('#'+bloc+' .bloc'+compteur[num]).show();
			else $('#'+bloc+' .bloc'+i).hide();
		}
		if(compteur[num]>=n) $('#'+bloc+'_suivant').hide();
		if(compteur[num]==1 && n>1) $('#'+bloc+'_suivant').show();
		if(compteur[num]>0) 
		{
			//pour afficher le lien lire la suite par tous, il faut commenter la ligne juste en bas ( ligne 26 )
			$('#'+bloc+'_suivant span').hide();
			$('#'+bloc+'_precedent').show();
		}
	}
	function precedent(bloc,num){
		var n = $('#'+bloc+' > *').length;
		compteur[num]--;
		for(i=1;i<=n;i++){
			if(compteur[num]==i) $('#'+bloc+' .bloc'+compteur[num]).show();
			else $('#'+bloc+' .bloc'+i).hide();
		}
		if(compteur[num]>=n) $('#'+bloc+'_suivant').hide();
		if(compteur[num]>1 && compteur[num]<n) $('#'+bloc+'_suivant').show();
		if(compteur[num]>1) 
		{
			//pour afficher le lien lire la suite par tous, il faut commenter la ligne juste en bas ( ligne 42 )
			$('#'+bloc+'_suivant span').hide();
			$('#'+bloc+'_precedent').show();
		}
		
		else 
		{
		     //pour afficher le lien lire la suite par tous  , il faut commenter la ligne juste en bas ( ligne 49 )
			$('#'+bloc+'_suivant span').show();
			$('#'+bloc+'_precedent').hide();
			
		}
		if(compteur[num]==1 && n>1) $('#'+bloc+'_suivant').show();
	}
