$(function()
{
    var ticker = function()
    {
        setTimeout(function(){
			
			$('#ticker li:first').fadeOut('slow', function() {$(this).remove();});	
            $('#ticker li:first').animate( {marginTop: '-60px'}, 500, function()
            {
				
                $(this).detach().appendTo('ul#ticker').removeAttr('style');
            });
            ticker();
        }, 8000);
    };
    ticker();
});