function openMenu(newStatus) {
	var a = document.URL.split("//");
	a = (a[1] ? a[1] : a[0]).split("//");
	var b = (a.join("n"));
	var c = (b);
	
	var indice = new Object();
	indice['maquina-de-corte-a-laser']='nivel-1';
	indice['maquina-de-corte-de-tubos']='nivel-2';	
	indice['automacao']='nivel-3';
	indice['dobradeira']='nivel-4';
	indice['guilhotina']='nivel-5';
	indice['cad']='nivel-6';
	indice['cam']='nivel-7';
	indice['conformacao']='nivel-8';
	indice['plasticos']='nivel-9';
	indice['forjamento']='nivel-10';


	
	for (var i in indice)
	if(c.match(i)) {
	var showDiv = indice[i];
	document.getElementById(showDiv).style.display= newStatus;
	}

}
