//Write out the HTML Menus for the navigation.
function drawSubmenu(menu){
   if(menu == 2) {
       document.write("<table border='0'>");
       document.write("<tr><td nowrap class='dl'><a href='/pages/academyinfo.htm' class='dl' target='_self' title='Academy Info'>Academy Info</a></td></tr>");
       document.write("<tr><td nowrap class='dl'><a href='/pages/staffinfo.htm' class='dl' target='_self' title='Staff Info'>Staff Info</a></td></tr>");
       document.write("</table>");
   }

   if(menu == 3) {
       document.write("<table border='0' >");
       document.write("<tr><td nowrap class='dl'><a href='/pages/rules.htm' class='dl' target='_self' title='Class Rules'>Class Rules</a></td></tr>");
       document.write("<tr><td nowrap class='dl'><a href='/pages/class1.htm' class='dl' target='_self' title='Young Kid Class'>Young Kid Class</a></td></tr>");
       document.write("<tr><td nowrap class='dl'><a href='/pages/class2.htm' class='dl' target='_self' title='Children Class'>Children Class</a></td></tr>");
       document.write("<tr><td nowrap class='dl'><a href='/pages/class3.htm' class='dl' target='_self' title='Youth Class'>Preteen/Youth Class</a></td></tr>");
       document.write("<tr><td nowrap class='dl'><a href='/pages/class4.htm' class='dl' target='_self' title='Adult Class'>Adult Class</a></DIV>");
       document.write("</table>");
   }
	
   if(menu == 4) {
       document.write("<table border='0'>");
       document.write("<tr><td nowrap class='dl'><a href='/forms/2010Spring/Spring_2010_Web.pdf' class='dl' target='_blank' title='Schedule/Tuition'>Schedule</a></td></tr>");
       document.write("<tr><td nowrap class='dl'><a href='/forms/Registration_form.jpg' class='dl' target='_blank' title='Registration Form'>Registration Form</a></td></tr>");
       document.write("</table>");
   }

   if(menu == 5) {
       document.write("<table border='0'>");
       document.write("<tr><td nowrap class='dl'><a href='http://hengdadance.wordpress.com/' class='dl' target='_self' title='Events'>Event Listings</a></td></tr>");
       document.write("</table>");
   }

   if(menu == 7) {
       document.write("<table border='0' cellpadding=1 cellspacing=0 >");
       document.write("<tr><td nowrap class='dl'>Under construction</td></tr>");
       document.write("</table>");
   }
}
