var indexPhotoImg = 1;

// celkovy pocet fotek
var photosCountImg = 4;

// rychlost animace fotky
var speedAnimateImg = 4000;

// animace fotek
var photo_animateImg;


$(document).ready(function() {
    photo_animateImg = setTimeout(runAnimateImg, speedAnimateImg);
});

function changePhotoImg()
{
    indexPhotoImg = indexPhotoImg + 1;

    if (indexPhotoImg > photosCountImg) {
        indexPhotoImg = 1;
    }
}

function runAnimateImg()
{
    $("#datacentra-img div.image-" + indexPhotoImg).fadeOut(1000);
    changePhotoImg();
    $("#datacentra-img div.image-" + indexPhotoImg).fadeIn(1000);
    photo_animate = setTimeout(runAnimateImg, speedAnimateImg);
}

