$(document).ready(
    function()
    {
        var czas = 5000; //1000 = 1s
        setInterval(przenikaj, czas);
        var i=2;
        function przenikaj(){
            var $active = $('.top_lewa DIV.top_foto_aktyw');
            if ( $active.length == 0 ) $active = $('.top_lewa DIV:last');            
            var $next =  $active.next().length ? $active.next()
            : $('.top_lewa DIV:first');

            // losowe wyswietlanie
            // var $sibs  = $active.siblings();
            // var rndNum = Math.floor(Math.random() * $sibs.length );
            // var $next  = $( $sibs[ rndNum ] );

            $active.addClass('top_foto_end_aktyw');

            $next.css({
                opacity: 0.0
            })
            .addClass('top_foto_aktyw')
            .animate({
                opacity: 1.0
            }, 1000, function() {
                $active.removeClass('top_foto_aktyw top_foto_end_aktyw');
            });
            
        }

    });


