$(document).ready(function(){

    //rel=external abre em nova janela
    $('a[rel=external]').click(function(){
        $(this).attr('target' , '_blank');
    });

    //gráfico em linha
    $('.inlinesparkline').sparkline('html' , {
        lineWidth: 1,
        lineColor: '#0D8ECF',
        lineWidth: 1.3,
        spotRadius: false,
        width: 80
        //Torna os gráficos em linha clicáveis e atualiza o gráfico
    }).click(function(){
        /* NÂO EXCLUIR ESTAS LINHAS
        var href = this.href.replace(/http:\/\/twittepaga/ , '');
        $('.chart').html( $('.chart').html().replace(/encodeURIComponent\("\/campaigns\/graph\/.*\/\d"\)/,'encodeURIComponent("' + href + '")'));
        $('.chart').html( $('.chart').html().replace(/(\/|%2F)campaigns(\/|%2F)graph(\/|%2F).*(\/|%2F)\d/, href ) );
         return false;
         */
    });



});