// JavaScript Document

function trocaMenu(id)
{
	for(i = 1; i < 7; i ++)
	{
		document.getElementById('aba_'+i).className = "";
	}

	document.getElementById('aba_'+id).className = "ativo";
	
}