jQuery(document).ready(function(){
	
	var first = 0;
	var speed = 1000;
	var pause = 3500;
	
		function removeFirst(){
			first = jQuery('ul#listticker li:first').html();
			jQuery('ul#listticker li:first')
			.animate({opacity: 0}, speed)
			.fadeOut('slow', function() {$(this).remove();});
			addLast(first);
		}
		
		function addLast(first){
			last = '<li style="display:none">'+first+'</li>';
			jQuery('ul#listticker').append(last)
			jQuery('ul#listticker li:last')
			.animate({opacity: 1}, speed)
			.fadeIn('slow')
		}
	
	interval = setInterval(removeFirst, pause);
});
