// Menu Javascript

function toggleDetail(id,number) {
        for (i=1;i<=number;i++) {
          body=document.getElementById(id+i);
          if (body) {
            if (body.style.display == 'none') {
              try {
                body.style.display='table-row';
              } catch(e) {
                body.style.display = 'block';
              }
            }
            else {
              body.style.display = 'none';
            }
          }
        }
      }
function hideDetail(id,number) {
        for (i=1;i<=number;i++) {
          body=document.getElementById(id+i);
          if (body) {
            if (body.style.display == 'table-row') {
                body.style.display = 'none';
            }
          }
        }
      }
    