// JavaScript Document



function AbaGaleriaVideo(){
	document.getElementById("mostraVideo").style.display = "block";
	document.getElementById("mostraFoto").style.display = "none";
}

function AbaGaleriaFoto(){
		
	document.getElementById("mostraFoto").style.display = "block";
	document.getElementById("mostraVideo").style.display = "none";
}

function ShowHideMenu(ind){
		
	for(var iM = 0; iM < 5; iM++)
	{
		if(iM != ind){
			document.getElementById('Menu' + iM).style.display = 'none';
		}
		if(iM == ind)
		{
			var menuCall = document.getElementById('Menu' + iM);
			menuCall.style.display = 'block';
		}
	}
	
}

function ShowHideMenuInterno(group, ind, quant){
		
	for(var imi = 0; imi < quant; imi++)
	{
		//alert(group + '' + imi)
		if(imi != ind){
			document.getElementById(group + '' + imi).style.display = 'none';
		}
		if(imi == ind)
		{
			var menuCall = document.getElementById(group + '' + imi);
			menuCall.style.display = 'block';
		}
	}
	
}


