// JavaScript Document

function show(theTable) { document.getElementById(theTable).style.display = 'block'; }
function hide(theTable) { document.getElementById(theTable).style.display = 'none'; }

function nada(total){	// oculta totes les capes
	var i;
	for (i=1;i<=total;i++) { 
	    hide('suboptions_0'+i);
	}
}