looping text slider with jQuery

setInterval(function(){
  //console.log("looped");
  $('#test li:first-child').fadeOut(420, "easeInCirc", function(){
    $(this).next('li').fadeIn(420, "easeInCirc").end().appendTo('#test');
  });
}, 2000);