	MudaTamanhoFonte = function(pTamanho) {
		
		if ( pTamanho == '' ) { $('article').removeClass() }
		else { $('article').attr('class', 'maior'); }
		
		var url_ajax = cfg_url_do_site + 'tamanho-fonte.asp'
		var pars_ajax = 'class=' + pTamanho;
		
		RetornoAjax = jQuery.ajax( {
			type:		'GET',
			dataType:	'html',
			data:		pars_ajax,
			url:		url_ajax,
			error:		function (xhr, ajaxOptions, thrownError){ /*alert(thrownError)*/ },
			success:	function(data){ /*alert('Ok');*/ }
		});
		
	}// JavaScript Document
