//<![CDATA[
window.onload = function () {
    if (window.location.href.match(/stronaglowna/i) != null || window.location.href.match(/mojewplaty/i) != null || window.location.href.match(/tworzenienowejplatnosci/i) != null) {
        changeColor();
    }
}

function changeColor() {
    if (document.querySelector('.summary__amount') != null) {
        if (document.querySelector('.summary__amount').textContent.match(/-/) != null) {
            document.querySelector('.summary__amount').style.color = "red";
        }
    }
    if (document.querySelector('.summary__amount') != null) {
        if (document.querySelector('.summary__amount').textContent.match(/-/) == null) {
            document.querySelector('.summary__amount').style.color = "green";
        }
    }
    schowajKoło();
}

window.addEventListener('load', schowajKoło);
window.addEventListener('resize', schowajKoło);

function changeColor() {
    if (document.querySelector('.summary__amount') != null) {
        if (document.querySelector('.summary__amount').textContent.match(/-/) != null) {
            document.querySelector('.summary__amount').style.color = "red";
        }
    }
    if (document.querySelector('.summary__amount') != null) {
        if (document.querySelector('.summary__amount').textContent.match(/-/) == null) {
            document.querySelector('.summary__amount').style.color = "green";
        }
    }
}

function drzewoFolderow() {
    $('.folderComponent .ui-helper-hidden li a').click(function () {
        $('.ui-helper-hidden li a').removeClass('activeFolder');
        $(this).addClass('activeFolder');
    });
}

function schowajKoło() {
    if (document.querySelector('.menuOptions .ui-submenu-child') != null) {
        var count = document.querySelectorAll('.menuOptions .ui-submenu-child').length;

        for (var x = 0; x < count; x++) {
            document.querySelectorAll('.menuOptions .ui-submenu-child')[x].style.display = "none";
        }
        if (count < 3) {
            document.querySelectorAll('.menuOptions .ui-submenu-child')[0].style.top = "10px";
            // document.querySelectorAll('.menuOptions .ui-submenu-child')[1].style.top = "10px";
        }
    }
}

function resetForm() {
    document.getElementById('form:month_label').innerHTML = 'Wybierz miesiąc';
    document.getElementById('form:year_label').innerHTML = 'Wybierz rok';
    document.getElementById('form:type_label').innerHTML = 'Wybierz rodzaj';
    document.getElementById('form:verification_label').innerHTML = 'Wybierz status';
    document.getElementById('form:declaration_label').innerHTML = 'Wybierz status';
}

function zamknijGrowl() {
    var xclose = document.querySelector('.ui-growl-icon-close');
    if (xclose != null) xclose.click();
}

function dodajDzwiek() {

    try {
        var video = $("#ufg-captcha-audio");
        var videoEn = $("#ufg-captcha-audio1");
        var str = "https://";
        if (video != null) {
            str = str.concat(window.location.host, "/przedsiebiorca/modul/rejestracja/captcha/imageCaptchaAudio?langCaptcha=pl&param2=");
        } else if (videoEn != null) {
            str = str.concat(window.location.host, "/przedsiebiorca/modul/rejestracja/captcha/imageCaptchaAudio?langCaptcha=en&param2=");
            video = videoEn;
        }
        var str2 = new Date().getTime();
        var http = str.concat(str2);
        $.get(http, function (data) {
            var prefix = "data:video/mp4;base64,";
            var src = prefix.concat(data);
            video.attr('src', src);
        });
    } catch (err) {
        console.log(err.message);
    }
}

// ]]>