function divShow(eid) {
	divHide('subAcerca');
	divHide('subInfo');
	divHide('subCons');
	divHide('subSecfyt');
	divHide('subContactos');
//	menuUnlight('menuAcerca');
//	menuUnlight('menuInfo');
//	menuUnlight('menuAutoridades');
//	menuUnlight('menuContacto');
//	menuHighlight('menu'+eid.substring(4));
	document.getElementById(eid).style.visibility = "visible";
}

function divHide(eid) {
	document.getElementById(eid).style.visibility = "hidden";
}

function menuHighlight(eid) {
	document.getElementById(eid).style.backgroundImage = '3dotsback.png';
}

function menuUnlight(eid) {
	document.getElementById(eid).style.backgroundImage = '3dots.png';
}
