﻿var curvyCornersVerbose = true;


if (typeof (jQuery) != "undefined") {

    function fixMenus() {
        if ($.browser.msie == true && $.browser.version == "7.0") {
            $('.menusdinamicos ul li ul li ul').each(function (i) {
                $(this).children('li').width($(this).width());
                $(this).children('li').each(function (i) { $(this).children('a').width($(this).width() - 30); });
            });

            $('.menusdinamicos .root ul:first-child > li').each(function (i) {
                var w = $(this).width() + 3;

                if ($(this).children('ul').children('li').width() < w) {
                    $(this).children('ul').children('li').width(w);
                }
            });
        }
    }

    function fixZIndex() {
        if ($.browser.msie == true && $.browser.version == "7.0") {
            var zIndexNumber = 1000;
            $('#header > div').each(function () {
                $(this).css('zIndex', zIndexNumber);
                zIndexNumber -= 10;
            });
        }
    };

    function fixBodyIE8() {
        if ($.browser.msie == true && $.browser.version == "8.0") {
            $('body').addClass('ie8');
        }
    };


    $(document).ready(function () {
        fixMenus();
        fixZIndex();
        fixBodyIE8();
    });
}
