(function() {
    $(function() {
        if (!jQuery.browser.msie)
            drawHBG();
        $('#scheme-link a').lightBox({
            overlayOpacity: .6,
            fixedNavigation: false,
            txtClose: "Закрыть",
            imageBtnClose: '/i/lightbox/btn-close.gif',
            imageLoading: '/i/lightbox/ico-loading.gif'
        });
    })

    function drawHBG() {
        var $bg = $('#h-bg');
        var backgroundRegExp = /url\(['"]?(.*?)['"]?\)/;
        if ($bg.length) {
            var bg = $bg.css('background-image');
            if (bg.match(backgroundRegExp)) {
                var imageUrl = RegExp.$1;
                $bg.css('background-image', 'none').append($(document.createElement('img')).attr({ src: imageUrl }).css({ width: '100%', height: $bg.height() }));
            }
        }
    }
})();
