ticker = function() {
    this.updateInterval;
    var max;
    var current;

    this.initTicker = function() {
        if ($('.newToday div h3').length < 2) return;
        max = $('.newToday div h3').length - 1;
        current = 0;

        setInterval(this.updateTicker, (this.updateInterval * 1000));
    }

    this.updateTicker = function() {
        obj = $('.newToday div');
        $(obj).find('h3:eq(' + current + ')').fadeOut(function() {
            current = (current == max) ? 0 : current + 1;
            $(obj).find('h3:eq(' + current + ')').fadeIn();
        });
    }
}

