$('.carousel .item').each(function(){
var next = $(this).next();
if (!next.length) {
next = $(this).siblings(':first');
}
next.children(':first-child').clone().appendTo($(this)).addClass('hidden-xs');
if (next.next().length>0) {
next.next().children(':first-child').clone().appendTo($(this)).addClass('hidden-sm hidden-xs');
}
else {
$(this).siblings(':first').children(':first-child').clone().appendTo($(this));
}
});