$(document).ready(function() {

	setInterval(function() {
	
		$('.txt div').each(function() {
	
			if($(this).is(':visible')) {
	
	                if($(this).next().is('div')) {
			        	$(this).fadeOut("slow", function() {
	
	                    	$(this).next().fadeIn();
	                    });
	                }
	                else {
	                	$(this).fadeOut("slow", function() {
	
	                    	$('.txt div').eq(0).fadeIn();
	                    });
	                }
			}
		});
		
	}, 6000);

});