$(document).ready(function() {
	$(function() {
	    $('ul#wrapped-image li:gt(0)').hide();
	    setInterval(function(){
	      $('ul#wrapped-image li:first-child').fadeOut(1500)
	         .next('li').fadeIn(1500)
	         .end().appendTo('ul#wrapped-image');}, 
	      4000);
	});
});

