﻿$(document).ready(function () {
    $('#global-nav .item').hover(function () {
        if ($.browser.version == "6.0") {
            $('.sub', this).css('left', $(this).offset().left)
        }
        $('.sub', this).css('display', 'block');
        var c = 0;
        $(this).find('.sub ul').each(function (a, b) {
            c += $(b).outerWidth(true)
        });
        $('.sub', this).css('width', c + 'px');
        $(this).addClass('active')
    }, function () {
        $('.sub', this).css('display', 'none');
        $(this).removeClass('active')
    });
});

