$(document).ready(function(){
	var fonte = 13;  
    $('#aumentarFonte').click(function(){  
		if (fonte < 18){ 
			fonte = fonte + 1;
			$('td:not(table#topo td)').css({'font-size': fonte+'px'});  
		}  
     });  
     $('#diminuirFonte').click(function(){  
        if(fonte>9){  
             fonte = fonte-1;
            $('td:not(table#topo td)').css({'font-size':fonte+'px'});  
        }  
	})
});
