$(document).ready(function() {
	setInterval(function(){
		$('.slider li').first().animate({marginLeft: '-234px'}, 300, function() {
			$('.slider li').first().clone().attr('style','').appendTo('.slider');
			$('.slider li').first().remove();
		});
	},5000);
});

