function showMenu(sub_num)
{
var thisSub = document.getElementById( sub_num );

if(thisSub.style.display == "block")
	thisSub.style.display = "none";
else
	thisSub.style.display = "block";
}
