﻿$(document).ready(function() {
    var fonte = 12;
    $('#aumenta_fonte').click(function() {
       
        if (fonte < 17) {
            fontefonte = fonte + 1;
            $('#entry p').css({ 'font-size': fonte + 'px' });
        }
        alert(fonte);
    });
    $('#reduz_fonte').click(function() {
        if (fonte > 9) {
            fontefonte = fonte - 1;
            $('#entry p').css({ 'font-size': fonte + 'px' });
        }
    });

    //$("#rss a[title]").tooltip();
});  
