
$(document).ready(function(){


    var count = 16;
    var string = 'segundos';

    $('#rseconds').html( count + ' '+string);

    setInterval(function(){

        count=count-1;

        if( count <= 1) string = ' segundo';

        if( count >= 0 ) $('#rseconds').html( count + ' '+string);

        if( count == 0 )
            {
                $('#descr_page').html( 'Redirecionando agora!' );
                window.location = 'http://' + window.location.host + '/';
            }

    },1000);


});


