var indexPhoto = 1;

// celkovy pocet fotek
var photosCount = 5;

// rychlost animace fotky
var speedAnimate = 4000;

// animace fotek
var photo_animate;
var photo_hover = false;

function changePhoto()
{
    indexPhoto = indexPhoto + 1;

    if (indexPhoto > photosCount) {
        indexPhoto = 1;
    }
}

function runAnimate()
{
    $("#index_banner #ib_item_" + indexPhoto).fadeOut(1000);
    $(".banner_switcher ul li#li_" + indexPhoto).removeClass("active");
    changePhoto();
    $("#index_banner #ib_item_" + indexPhoto).fadeIn(1000);
    $(".banner_switcher ul li#li_" + indexPhoto).addClass("active");
    photo_animate = setTimeout(function() { runAnimate(); }, speedAnimate);
}

function switchPict(id)
{
    // znovuspusteni animace, pokud na ni uzivatel uz neni mysi
    //indexPhoto = indexPhoto - 1;
    $("#index_banner #ib_item_" + indexPhoto).fadeOut(1000);
    $(".banner_switcher ul li#li_" + indexPhoto).removeClass("active");
    $("#index_banner #ib_item_" + id).fadeIn(1000);
    $(".banner_switcher ul li#li_" + id).addClass("active");
    indexPhoto = id;
    photo_hover = false;
}


$(document).ready(function()
{
    // stop / start animace fotky
    $("#index_banner").hover(
        function() {
            // zastaveni animace, pokud na ni uzivatel najel mysi
            clearTimeout(photo_animate);
            photo_hover = true;
        },
        function () {
// ROZJÍŽDÍ ANIMACI
            if (photo_hover == true) runAnimate();
        }
    );

});


