// JavaScript Document
function showNews(temp, tot){
	
	for(i=0; i <= tot ; i++){
		document.getElementById('conteudo_aba_'+i).style.display ='none';
		document.getElementById('aba_hrf_'+i).className = 'aba_ti_editoria_off';
    }
	    
		document.getElementById('conteudo_aba_'+temp).style.display ='block';
		document.getElementById('aba_hrf_'+temp).className = 'aba_ti_editoria';
		document.getElementById('aba_hrf_'+temp).className;

     return false;
	 }

