var banner_rotation_speed = 2000; // cas, pocas ktoreho sa obrazky premenia - v milisekundach
var banner_rotation_timeout = 5000; // cas, kedy sa zobrazuje jeden obrazok - v milisekundach
var banner_rotation_type = 'sequence';

$(document).ready(function(){
    $('#imagescontainerTitulkaHorizontalny').innerfade({
        speed: banner_rotation_speed,
        timeout: banner_rotation_timeout,
        type: banner_rotation_type,
        containerheight: '129px'
    });
    
    $('#imagescontainerTitulkaStvorec').innerfade({
        speed: banner_rotation_speed,
        timeout: 5000,
        type: banner_rotation_type,
        containerheight: '300px'
    });
    
    $('#imagescontainerPodstrankaStvorec').innerfade({
        speed: banner_rotation_speed,
        timeout: 5000,
        type: banner_rotation_type,
        containerheight: '181px'
    });
});

