function rotate(seconds)
                {
                        var active_elem = $('#rotate li:visible');
                        if (active_elem.length != 1 || $(active_elem).next('li').length == 0) {
                                active_elem = $('#rotate li:first');
                        } else {
                                active_elem = $(active_elem).next('li');
                        }
                        $('#rotate li:visible').hide();
                        $(active_elem).fadeIn('slow');
                        window.setTimeout('rotate('+seconds+')', seconds);
                }
                $(function()
                {
                        rotate(5500);
                });