function img_rotate(){
    $('#kwadracik-1').addClass('zamalowany').siblings().removeClass('zamalowany');
    setInterval(function() {
        var sClass = $('#img_rotator').attr('class');
        var aClass = sClass.split('-');
        aClass[1] = parseInt(aClass[1], 10);
        ++aClass[1];
        if(aClass[1]>3) {
            aClass[1] = 1;
        }
        $('#img_rotator').fadeOut('fast', function(){
            $('#img_rotator').attr('class', 'big-'+aClass[1]);
            $('#kwadracik-'+aClass[1]).addClass('zamalowany').siblings().removeClass('zamalowany');
            $('#img_rotator').fadeIn('slow');
        });
                            
    },3500);
                        
    $('#kwadraciki a').click(function(){
        var sId = $(this).attr('id');
        var aId = sId.split('-');

        $('#img_rotator').fadeOut('fast', function(){
            $('#kwadracik-'+aId[1]).addClass('zamalowany').siblings().removeClass('zamalowany');
            $('#img_rotator').attr('class', 'big-'+aId[1]);                                
            $('#img_rotator').fadeIn('slow');
        });
    });
}

function remove_rotator(bg_img){    
    $('#top #img_rotator').remove();
    $('#top #haslo').remove();
    $('#top').height('132px');
    $('#top #logo img').css({
        'margin-top':'5px'
    });
    $('#top').css({
        'background-image':'url('+bg_image+')'
        });
    $('#img_rotator').attr('class', 'big-'+parseInt(Math.floor(Math.random()*3)+1));
}
