$(function(){
    $('.hidden-number').each(function(){
        if ($(this).parents('.model-page-tab-menu:first').width() + $(this).width() < $(this).parents('.column_header:first').width() - 3) {
            $(this).show();
        }
    });
});
