function toggleDiv(divid) {
	var thesub = document.getElementById(divid);

	if(thesub.style.display == "block") {
    		thesub.style.display = "none";
  	}
	else {
		thesub.style.display = "block";
	}
} 
  
  function showSub(i){
	theSub = getObj("submeny"+i);
	theSub.style.display = 'block';
}

