url = location.href;

quantidade_links = document.getElementById("Menu_Lateral").getElementsByTagName("a").length;

for (i = 0; i < quantidade_links; i++){
	identificador = document.getElementById("Menu_Lateral").getElementsByTagName("a")[i].id;
	
	if (url.indexOf(identificador) > 0){
		conteudo = document.getElementById(identificador).innerHTML;
		document.getElementById(identificador).innerHTML = "<font class='linklatvis'>" + conteudo + "</font>";
	}
}