function fixHeights() {
    if ($('#leftzone') && $('#content')) {
        var content = $('#content').height();
        var leftzone = $('#leftzone').height();
        var maxh = (leftzone > content) ? leftzone : content;
        if ($('#rightzone')) {
            var rightzone = $('#rightzone').height();
            maxh = (rightzone > maxh) ? rightzone : maxh;
            if (rightzone < maxh) { $('#rightzone').height(maxh); }
        }
        if (leftzone < maxh) { $('#leftzone').height(maxh); }
        if (content < maxh) { $('#content').height(maxh); }
    }
}

$(document).ready(function(){
    $('.rounded').wrapInner('<div class="rounded-top"><div class="rounded-left"><div class="rounded-right"><div class="rounded-lb"><div class="rounded-rb"><div class="rounded-lt"><div class="rounded-rt"></div></div></div></div></div></div></div>');
    if ($('div.footer-scroll').size() > 0) {
        var footerScroll = $('div.footer-scroll');
        $('div.footer-scroll-right').click(function(e){
            var offset = footerScroll.get(0).scrollLeft + 190;
            footerScroll.animate({scrollLeft: offset},100);
        });
        $('div.footer-scroll-left').click(function(e){
            var offset = footerScroll.get(0).scrollLeft - 190;
            footerScroll.animate({scrollLeft: offset},100);
        });
    }
    //fixHeights();
    $('.rounded').each(function(){
        $(this).find('.rounded-top, .rounded-left, .rounded-right, .rounded-lb, .rounded-rb').height($(this).height());
    });

    // highlight current menu item
    var pages = { project:1, 3661:2, news:3, 3637:4, 3662:5, comments:7, obzor:8, links:9 };
    var url = location.href.match(/strategy\/(\w*)\//);
    if (url!=null && url.length > 1) {
        var page = pages[url[1]];
        if (page) {
            $('img.static-menu'+page).attr('src', '/images/but_'+page+'s.gif');
        }
    }
    return false;
});