﻿$(function () {

    var boxes = '.video_box,.gallery_box,.news_box,.download_box,.external_box,.tags_box,.feature_box,.contact_box,.calendar_box,.kino-box';

    if ($('.wrapper:has(.right)').length > 0) {
        var divs = $('.wrapper .right .col_320').parent();
        divs.each(function () {
            var elem = $(this);
            var col1 = elem.children('.col_320:nth-child(1)').children(boxes);
            var col2 = elem.children('.col_320:nth-child(2)').children(boxes);
            var h1 = col1.height();
            var h2 = col2.height();
            var h = h1 > h2 ? h1 : h2;
            col1.height(h);
            col2.height(h);
        });
    } else {
        var clear = $('.wrapper .content>.clear');
        clear.each(function () {
            var elem = $(this);
            var prev = elem.prev('.col_300,.col_300_NOspace');
            var height = 0;
            while (prev.length > 0) {
                height = height < prev.height() ? prev.height() : height;
                prev = prev.prev('.col_300,.col_300_NOspace');
            }

            prev = elem.prev('.col_300,.col_300_NOspace');
            while (prev.length > 0) {
                prev.children(boxes).height(height);
                prev = prev.prev('.col_300,.col_300_NOspace');
            }
        });
    }
});

