$(function () {
 
    // Подсветка меню.
    var hoit = function (item, way) { $(item)[way ? "addClass" : "removeClass"]("active"); };
    $("#siteMenu li").hover(function () { hoit(this, true); },
                            function () { hoit(this, false); });
    var headerHeight = 0,
        fixCubeLayout = function () {
            if (!headerHeight)
                headerHeight = $("div#pageHeader").outerHeight(true);
            var wh = $(window).height(),
                lth = wh - headerHeight;
            $("#bi-panel").height(lth);
        };
        
    // $(window).resize(fixCubeLayout);
    // fixCubeLayout();
    
    window.changeProject = function () {
        window.location.replace("/page/" + $("select.bi-project-selector").attr("langcode") + "." + $("select.bi-project-selector").attr("pageid") + "." + parseInt($("select.bi-project-selector").val()) + ".htm"); 
    };    
    
});
