var etape = 1;
$(document).ready(function(){
	
	animation();
	
		
	$('#eltInfo').mouseleave(function(e) {
		animation();
    });

	$('#eltInfo').mouseenter(function(e) {
		$(document).stopTime('animation');
    });
	
}); 


function animation() {
	$(document).everyTime(3000,'animation',function(i) {
		fade(etape,etape+1);
		etape++;
	});
}

function fade(fadeout,fadein) {

	
	if($("#dBlInfo"+fadein).html() == null) {
		fadein = 1;
		etape = 0;
	}
	$("#dBlInfo"+fadeout).fadeOut("slow").toggleClass('infoON');
	$("#dBlInfo"+fadeout).fadeOut("slow").toggleClass('infoOFF');
	$("#dBlInfo"+fadein).fadeIn("slow").toggleClass('infoOFF');
	$("#dBlInfo"+fadein).fadeIn("slow").toggleClass('infoON');
}
