﻿$(document).ready(function () {
    localizeRadWindow();

    $('hr:not(.clear)').wrap('<div class="horizontal-line" />');

    $('.cenik tr:first-child td:nth-child(2)').addClass('thbig');
    $('.cenik tr td:nth-child(2)').addClass('big');
    $('.pasky tr:first-child td:nth-child(2)').addClass('thsmall');
    $('.pasky tr td:nth-child(2)').addClass('tdsmall');
    $('.inkoust tr td:nth-child(2)').addClass('tdbigger');
    $('.inkoust tr:first-child td:nth-child(2)').addClass('thbig');
    $('.vykup tr td:nth-child(2)').addClass('tdbigger');

    window.onresize = function (event) {
        //SetHeight();
    }
    window.onload = function (event) {
        //SetHeight();
    }
});

function SetHeight() {
    var headerH = $('#head-wrap').height() + $('.ControlPanel').height();
    var footerH = $('#foot-panel').height();
    var middleH = $('#middle-panel').height();

    var bodyH = $('body').height();
    var H = headerH + middleH + footerH;

//    alert('H: ' + H);
//    alert('bh: ' + bodyH);

    if (bodyH > H) {
        var tmpH = bodyH - headerH - footerH - middleH + 60;
        $('#middle-panel').css('min-height', middleH + tmpH + 'px');
    }
}

function localizeRadWindow() {
    try {
        Telerik.Web.UI.RadWindowUtils.Localization =
            {
                "Close": "Zavřít",
                "Minimize": "Minimalizovat",
                "Maximize": "Maximalizovat",
                "Reload": "Aktualizovat",
                "PinOn": "Zakotvit na tomto místě",
                "PinOff": "Odkotvit",
                "Restore": "Obnovit",
                "OK": "OK",
                "Cancel": "Zrušit"
            };
    }
    catch (e) { }
}


