var estat=0

function desplegar(obj,i)
{
var Menu
var M='Menu'+i

	if (typeof M=="string"){
		Menu=document.getElementById(M).style;
		estat=1;
		obj.style.backgroundColor='000000';
		obj.style.color='68ad71';
		Menu.visibility='visible';
	}
}

function plegar(obj,i)
{
var Menu
var M='Menu'+i

	if(estat==1){
		if (typeof M=="string"){
			Menu=document.getElementById(M).style;
			obj.style.backgroundColor='68ad71';
			obj.style.color='ffffff';
			Menu.visibility='hidden';
			estat=0;
		}
	}
	else
		desplegar(obj,i);
}
