function bandeauDefile (anim, idPhoto, nbrPhoto, type, redirection, tempsFondu, intervalle) {
	for (var i=1; i<=nbrPhoto; i++) {
		if (i != idPhoto) $("#"+anim+i).css({display: "none"});
	}
	$("#"+anim+idPhoto).fadeTo(tempsFondu, 1);
	
	idPhoto++;
	if ((idPhoto > nbrPhoto) && (type == 'boucle')) idPhoto = 1;
	
	if (idPhoto <= nbrPhoto) setTimeout("bandeauDefile('"+anim+"', "+idPhoto+", "+nbrPhoto+", '"+type+"', '"+redirection+"', "+tempsFondu+", "+intervalle+")", intervalle);
	else if (type == 'redirection') document.location.href=redirection;
}
