// JavaScript Document

function muda(div_nome){

var cor = document.getElementById(div_nome);

	cor.style.backgroundColor = '#EFEFEF';

}


function muda2(div_nome){

	var cor = document.getElementById(div_nome);
	
	cor.style.backgroundColor = '#F8F8F8';
}	


function TamFonte(num, id){
	document.getElementById(id).className = "ft"+num;
}