function getOpinioes() {
    var d = new Date();
    $.ajax({
        url: 'http://www.pedagogiadofutsal.com.br/json/opiniao' + d.getTime() + '.json?opiniao',
        success: function(response){
            var data = json_parse(response);
            
            var comentario = document.createElement('div');
            comentario.className = 'opiniao';
            var conteudo = document.createElement('p');
            var autor = document.createElement('p');
            conteudo.className = 'opiniao_content';
            autor.className = 'opiniao_author';
            
            $(conteudo).html(data['opiniao']);
            $(autor).html(data['nome']);
            
            comentario.appendChild(conteudo);
            comentario.appendChild(autor);
            
            document.getElementById('opinioes_wrapper').appendChild(comentario);
        }
    });
}

function animateOpinioes()
{
    $('#opinioes_wrapper').animate({
            top: "-=1px"
        },
        200
    );
}

$(document).ready(function()
{
    getOpinioes();
    setInterval('getOpinioes()', 10000);
    var animate = setInterval('animateOpinioes()', 250);
    
    $('#opinioes').mouseenter(function(){
        clearInterval(animate);
    });
    $('#opinioes').mouseleave(function(){
        animate = setInterval('animateOpinioes()', 250);
    });
});
