$(function() {
    var ticker = function() {
        setTimeout(function() {
            $('#ticker li:first').animate({ marginTop: '-120px' }, 800, function() {
                $(this).detach().appendTo('ul#ticker').removeAttr('style');
            });
            ticker();
        }, 10000);
    };
    ticker();
});

var tickerMouseOver = function() {
    setTimeout(function() {
        $('#ticker li:first').animate({ marginTop: '-120px' }, 800, function() {
            $(this).detach().appendTo('ul#ticker').removeAttr('style');
        });
        ticker();
    }, 80000);
};
tickerMouseOver();

var ticker = function() {
    setTimeout(function() {
        $('#ticker li:first').animate({ marginTop: '-120px' }, 800, function() {
            $(this).detach().appendTo('ul#ticker').removeAttr('style');
        });
        ticker();
    }, 10000);
};
ticker();
