//despliege de contenidos con pulldown

isOPERA = (navigator.userAgent.indexOf('Opera') >= 0)? true : false;
isIE    = (document.all && !isOPERA)? true : false;
isDOM   = (document.getElementById && !isIE && !isOPERA)? true : false;

var cantidad	= new Array(); 
cantidad["allen"] = "3";
cantidad["ambiental"] = "4";
cantidad["audiovisual"] = "6";
cantidad["conferencias"] = "3";
cantidad["countryman"] = "6";
cantidad["furman"] = "3";
cantidad["hometheater"] = "6";
cantidad["ic_audio"] = "6";
cantidad["mediamatrix"] = "30";
cantidad["mipro"] = "6";
cantidad["quadra_technic"] = "4";
cantidad["sonido"] = "12";
cantidad["tannoy"] = "10";
cantidad["xta"] = "10";
cantidad["whirlwind"] = "6";
cantidad["digigram"] = "8";
var entrada=true;
var content				= new Array ();
 
function show (id, displayValue){
	if (isDOM)
	document.getElementById(id).style.display = (displayValue)? displayValue: "block";
		else if (isIE)
		document.all[id].style.display = "block";
}

function menu(llave, id){
	hide_all(llave);
	if (content [id] || entrada){
		show (id, 'table-row');
		content [id] = false;
		// entrada = false;
		for (x=0; x < cantidad[llave]; x++){
			content [llave + "_"+x] = true;
		}
		content [id] = false;
	}else{
	
	} 
}
 
function hide (id){
	if (isDOM)
		document.getElementById(id).style.display = "none";
	else if (isIE)
		document.all[id].style.display = "none";
}
 
function hide_all(llave) {
	for (i=0; i<cantidad[llave];i++){
		hide(llave + "_" + i);
	}
}
