﻿$(document).ready(function () {
    $("#tweet").tweet({
        username: "gendaioficial",
        count: 1,
        fetch: 20,
        loading_text: "carregando tweets...",
        template: "{text}",
        filter: function(t){ return ! /^@\w+/.test(t["tweet_raw_text"]); }
    }).bind("loaded",function(){$(this).find("a").attr("target","_blank");});
});
