(function($){
    var ShowAnim1 = function(){
        $('#anim1').fadeIn(900, function(){
            $(this).find('.num').animate({
                width : '100%'
            }, 4000, function(){
                var t = $(this);
                setTimeout(function(){
                    t.css('width', 0);
                    $('#anim1').hide();
                    ShowAnim1();
                }, 2000);

            });
        });
    };
    $(document).ready(function(){
        ShowAnim1();
    });
})(jQuery);

