//ajax loading float div indocator
$(document).ready(function() {
	/*$("#loading")
	.bind("ajaxError", function(){alert('Please try again later.');})
	.bind("ajaxSend", function(){$(this).show();})
	.bind("ajaxComplete", function(){$(this).hide();}).hide();
	*/
	$("#nav").html('News');
});

/** change font news **/
var max=19;
var numero= 12;
function increaseFontSize() {
	if(numero!=max) numero += 1;
    else numero=12;
	$("#nota_txt_noticia").css("font-size", numero);
    $("#nota_txt_noticia > *,#nota_txt_noticia > * > *,#nota_txt_noticia > * > * >*,#nota_txt_noticia > * > * > * > * ,#nota_txt_noticia > * > * > * > * > *,#nota_txt_noticia > * > * > * > * > * > *,#nota_txt_noticia > * > * > * > * > * >* >*,#nota_txt_noticia > * > * > * > * > * >* >*>*,#nota_txt_noticia > * > * > * > * > * >* >*>*").css("font-size", numero);
  
}
/** end change font news **/
