$(document).ready(function () {
	var tickerfirst = 0;
	var tickerspeed = 700;
	var tickerpause = 7500;
	
		function removeFirst(){
			tickerfirst = $('#right-col ul li:first').html();
			$('#right-col ul li:first')
			.animate({opacity: 0}, tickerspeed)
			.slideUp('slow', function() {$(this).remove();});
			addLast(tickerfirst);
		}
		
		function addLast(tickerfirst){
			last = '<li style="display:none">'+tickerfirst+'</li>';
			$('#right-col ul').append(last)
			$('#right-col ul li:last')
			.animate({opacity: 1}, tickerspeed)
			.fadeIn('slow')
		}
	
	interval = setInterval(removeFirst, tickerpause);
});