					$(document).ready(function(){
						var fonte = 14;
						var normal = $('p').css('font-size');
						 $("#aumenta_fonte").click(function(){
							if (fonte<22){
								fonte = fonte+1;
								$("body").css({"font-size" : fonte+"px"});
							}
						});
						$("#reduz_fonte").click(function(){
						if (fonte>10){
							fonte = fonte-1;
							$("body").css({"font-size" : fonte+"px"});
						}
					   });
					   $("#default_font").click(function(){
						if (fonte != 14){
							fonte = 14;
							$("body").css({"font-size" : fonte+"px"});
						}
					   });
					});
