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