function ShowMenu(menuId,rubrId) {
        CacherMenus();
        document.getElementById(menuId).style.display="block";
		document.getElementById(rubrId).style.fontWeight="bold";		
}

function CacherMenus() {
    for(i=1;i<=7;i++) {
      with(document.getElementById("menu"+i).style) {
        display="none";}
	with(document.getElementById("rubr"+i).style) {
		fontWeight="normal";}
  }
  }