function aumenta(){
	var font = $('#textoAlt').css('font-size');
	font = font.charAt(0)+font.charAt(1);
	font++;
	font = font+'px';
	$('#textoAlt').css('font-size',font);
}

function diminui(){

	var font;
	font = $('#textoAlt').css('font-size');
   font = font.charAt(0)+font.charAt(1);
    if(font != '10'){
    	font--;
    	font = font+'px';
		$('#textoAlt').css('font-size',font);	
    	
    }
    
}