(function() {
    $(document).ready(initMenu);
    
    function initMenu()
    {
        $("table.MenuBarHorizontal td table").each( function() {
            if ($(this).width() > $(this.parentNode).width()) {
                $(this.parentNode).width( $(this).width() );
            } else if ($(this).width() < $(this.parentNode).width()) {
                $(this).width( $(this.parentNode).width() );
            }
        } );
        
        $("table.MenuBarHorizontal td table td").each( function() {
            $(this).width( $(this.parentNode.parentNode.parentNode).width() );
        } );
    }
})();