var itemAnterior = "icono_default";

function mostrarItemActual(sIdSeccion) {
	ocultarItemMenu(itemAnterior);
	mostrarItemMenu(sIdSeccion);
	itemAnterior = sIdSeccion;
}

function mostrarItem (oItem) {
	oItem.style.visibility ='visible';
	oItem.style.display = 'block';
}

function mostrarItemMenu (sIdItem) {
	oItem = document.getElementById(sIdItem);
	mostrarItem(oItem);	
}

function ocultarItem (oItem) {
	oItem.style.visibility ='hidden';
	oItem.style.display = 'none';
}

function ocultarItemMenu (sIdItem) {
	oItem = document.getElementById(sIdItem);
	ocultarItem(oItem);
}