function hide(id){
	document.getElementById(id).style.visibility = 'hidden';
	document.getElementById(id).style.display = 'none';
}

function show(id){
	document.getElementById(id).style.visibility = 'visible';
	document.getElementById(id).style.display = 'block';
}

function hideAll(){
	//hide('seguros');
	hide('oficinas');
	hide('garantias');
	//hide('novos');
}

openTab('oficinas');

function openTab(id){
	hideAll();
	show(id);
}
