$(document).ready(function () {

    $b = $('#hidden').html();

    $('.nav2 a').each(function () {
        if ($(this).attr('href').substring(14, 25) == $b) {
            $(this).addClass('active-link');
            $(this).parent().addClass('active-link');
        }
    })

    $('ul.menu ul').each(function (index) {
        $(this).prev().addClass('collapsible').click(function () {
            if ($(this).next().css('display') == 'none') {
                $(this).next().slideDown(200, function () {
                    $(this).prev().removeClass('collapsed').addClass('expanded');
                });
            }
            else {
                $(this).next().slideUp(200, function () {
                    $(this).prev().removeClass('expanded').addClass('collapsed');
                    $(this).find('ul').each(function () {
                        $(this).hide().prev().removeClass('expanded').addClass('collapsed');
                    });
                });
            }
            return false;
        });
    });

    $('ul#tel ul').each(function (index) {
        $(this).hide().prev().removeClass('expanded').addClass('collapsed');
    });

    $('ul#tz-menu ul').each(function (index) {
        $(this).hide().prev().removeClass('expanded').addClass('collapsed');
    });
});

function fopen()
{
    document.getElementById('fileOpen').click();
}

function okno()
{
    window.open('../?page_id=281', 'form', 'width=736,height=958,scrollbars=YES'); 
self.focus();
}

function about() {
    window.open('http://su-53mvks.ru//?page_id=176');
}

function tec() {
        $('#tec-img1').removeClass();
        $('#tec-img2').addClass('tec-active');
    }

function tec2() {
        $('#tec-img2').removeClass();
        $('#tec-img1').addClass('tec-active');
    }

