$(document).ready(function()
{
	var first = 0;
	var speed = 200;
	var pause = 3500;
		function removeFirst(){
			first = $('ul.deroule li:first-child').html();
			$('ul.deroule li:first-child')
			.animate({opacity: 0}, speed)
			.slideUp('slow', function() {$(this).fadeOut('slow', function() {$(this).remove();})});
			addLast(first);
		}
		function addLast(first){
			last = '<li style="display:none">'+first+'</li>';
			$('ul.deroule').append(last)
			$('ul.deroule li:last-child')
			.animate({opacity: 1}, speed)
			.fadeIn('fast')

		}
	interval = setInterval(removeFirst, pause);
	//$('#events > ul').tabs({ fx: { height: 'toggle', opacity: 'toggle' } });	
});	