//Define Menu Options
  M=0;
  Menu = new Array(new Array());

  //Enter Link Name, Link Title (Mouse Over Pause, if any), URL
    //Template - Menu[M] = new Array('NAME','MOUSEOVER_PAUSE','URL'); M++;
    //           Menu[M] = new Array('','',''); M++;

    Menu[M] = new Array('Home','Welcome Page','http://www.shoheiryukarate.com/index.html'); M++;
    Menu[M] = new Array('Karate History','Shohei-Ryu History','http://www.shoheiryukarate.com/history.html'); M++;
    Menu[M] = new Array('Dojo History','Ed DeCosta\'s Karate Dojo History','http://www.shoheiryukarate.com/dojohistory.html'); M++;
    Menu[M] = new Array('Lineage, Sensei, and Senior Ranks','Instructors','http://www.shoheiryukarate.com/instructors.html'); M++;
    Menu[M] = new Array('Schedule','Class Schedules','http://www.shoheiryukarate.com/schedule.html'); M++;
    Menu[M] = new Array('Location','Location and Maps','http://www.shoheiryukarate.com/location.html'); M++;
    Menu[M] = new Array('Tiny Tigers','Tiny Tiger Classes','http://www.shoheiryukarate.com/tinytigers.html'); M++;
    Menu[M] = new Array('Juniors','Junior Classes','http://www.shoheiryukarate.com/juniors.html'); M++;
    Menu[M] = new Array('Adults','Adult Classes','http://www.shoheiryukarate.com/adults.html'); M++;
    Menu[M] = new Array('Videos','Videos','http://www.shoheiryukarate.com/video.html'); M++;
    Menu[M] = new Array('Members','Information for Members Only','http://www.shoheiryukarate.com/members/'); M++;
    Menu[M] = new Array('E-Mail','Contact via E-Mail','mailto:jean@shoheiryukarate.com?subject=Web Contact'); M++;


// Draw the Menu
  //Main Buttons
    ThisDiv  = '<TABLE CELLSPACING=0 CELLPADDING=5 BORDER=0>';
    for(i=0;i<Menu.length;i++) {
      ThisDiv += '<TR><TD STYLE="WIDTH:80px;">';
      ThisDiv += '<A HREF="' + Menu[i][2] + '" TITLE="' + Menu[i][1] + '">' + Menu[i][0] + '</A>';
      if(i==0) {
        ThisDiv += '</TD><TD ROWSPAN=' + (Menu.length + 1) +' STYLE="BORDER-RIGHT:2px solid #990000;">&nbsp;</TD></TR>';
      } else {
        ThisDiv += '</TD></TR>';
      }
    }
    ThisDiv += '</TABLE>';
    document.write(ThisDiv);
