//defines menu items      
mymenu2 = new Menu
//defines colour of main table border and positioning
mymenu2.maintableprops("#0000FF",1,1,0)
//defines colour of main cells and positioning
mymenu2.maincellprops("left","#0000FF","#0000FF")
//defines colour of sub table cell borders and positioning
mymenu2.subtableprops("#000000",1,1,0)
//defines colour of sub cells and positioning
mymenu2.subcellprops("left","#99ccff","#ffffff")
//defines font type, size and colour
mymenu2.fontdetails("Verdana",1,"#FFFFFF")
mymenu2.startMenu()
//defines the names of the links
mymenu2.addMenu("menu1","<b>&nbsp;SCSC&nbsp;</b>")
mymenu2.addMenu("menu2","<b>&nbsp;The&nbsp;Swim&nbsp;School&nbsp;</b>")
mymenu2.addMenu("menu3","<b>&nbsp;Calendar&nbsp;</b>")
mymenu2.addMenu("menu4","<b>&nbsp;Registration&nbsp;</b>")
mymenu2.addMenu("menu5","<b>&nbsp;Policies&nbsp;</b>")
mymenu2.addMenu("menu6","<b>&nbsp;Levels&nbsp;</b>")
mymenu2.addMenu("menu7","<b>&nbsp;Links&nbsp;</b>")
mymenu2.addMenu("menu8","<b>&nbsp;FAQ&nbsp;</b>")
mymenu2.addMenu("menu9","<b>&nbsp;Contact&nbsp;Us&nbsp;</b>")
mymenu2.addMenu("menu10","<b>&nbsp;Employment&nbsp;</b>")
mymenu2.showMainMenu()

//defines the drop down links category name - name to appear - URL
mymenu2.addSubMenu("menu1", "<b>&nbsp;Competitive</b>", "http://competitive.santaclaraswimclub.org")
mymenu2.addSubMenu("menu1", "<b>&nbsp;Swim School</b>", "http://swimschool.santaclaraswimclub.org")
mymenu2.addSubMenu("menu1", "<b>&nbsp;Masters</b>", "http://masters.santaclaraswimclub.org")
mymenu2.addSubMenu("menu1", "<b>&nbsp;Alumni</b>", "http://alumni.santaclaraswimclub.org")
mymenu2.addSubMenu("menu1", "<b>&nbsp;Contact</b>", "http://www.santaclaraswimclub.org/common/contact.htm")
mymenu2.addSubMenu("menu1", "<b>&nbsp;Facilities</b>", "http://www.santaclaraswimclub.org/common/facilities.htm")
mymenu2.addSubMenu("menu1", "<b>&nbsp;History</b>", "http://www.santaclaraswimclub.org/common/history.htm")

mymenu2.addSubMenu("menu2", "<b>&nbsp;Mission Statement</b>", "http://swimschool.santaclaraswimclub.org/mission.htm")
mymenu2.addSubMenu("menu2", "<b>&nbsp;Staff</b>", "http://swimschool.santaclaraswimclub.org/staff.htm")
mymenu2.addSubMenu("menu2", "<b>&nbsp;History</b>", "http://swimschool.santaclaraswimclub.org/history.htm")
mymenu2.addSubMenu("menu2", "<b>&nbsp;Locations</b>", "http://swimschool.santaclaraswimclub.org/locations.htm")

mymenu2.addSubMenu("menu3", "<b>&nbsp;Calendar</b>", "http://swimschool.santaclaraswimclub.org/calendar.htm")

mymenu2.addSubMenu("menu4", "<b>&nbsp;New Students</b>", "http://swimschool.santaclaraswimclub.org/ltsRegister.html")
mymenu2.addSubMenu("menu4", "<b>&nbsp;Current Students</b>", "http://swimschool.santaclaraswimclub.org/currentstudents.htm")
mymenu2.addSubMenu("menu4", "<b>&nbsp;Returning Students</b>", "http://swimschool.santaclaraswimclub.org/returnStudents.html")
mymenu2.addSubMenu("menu4", "<b>&nbsp;Pre-Competitive Students</b>", "http://swimschool.santaclaraswimclub.org/precompStudents.html")

mymenu2.addSubMenu("menu5", "<b>&nbsp;Policies</b>", "http://swimschool.santaclaraswimclub.org/ltsPolicies.html")

mymenu2.addSubMenu("menu6", "<b>&nbsp;Waterbabies</b>", "http://swimschool.santaclaraswimclub.org/waterbabies.htm")
mymenu2.addSubMenu("menu6", "<b>&nbsp;Tiny Tots 1</b>", "http://swimschool.santaclaraswimclub.org/tinytots1.htm")
mymenu2.addSubMenu("menu6", "<b>&nbsp;Tiny Tots 2</b>", "http://swimschool.santaclaraswimclub.org/tinytots2.htm")
mymenu2.addSubMenu("menu6", "<b>&nbsp;Tiny Tots 3</b>", "http://swimschool.santaclaraswimclub.org/tinytots3.htm")
mymenu2.addSubMenu("menu6", "<b>&nbsp;Novice</b>", "http://swimschool.santaclaraswimclub.org/novice.htm")
mymenu2.addSubMenu("menu6", "<b>&nbsp;Intermediate</b>", "http://swimschool.santaclaraswimclub.org/intermediate.htm")
mymenu2.addSubMenu("menu6", "<b>&nbsp;Pre-Competitive</b>", "http://swimschool.santaclaraswimclub.org/precompetitive.htm")

mymenu2.addSubMenu("menu7", "<b>&nbsp;Links</b>", "http://swimschool.santaclaraswimclub.org/links.htm")

mymenu2.addSubMenu("menu8", "<b>&nbsp;FAQ</b>", "http://swimschool.santaclaraswimclub.org/faq.htm")

mymenu2.addSubMenu("menu9", "<b>&nbsp;Contact Us</b>", "http://www.santaclaraswimclub.org/common/contact.htm")
mymenu2.addSubMenu("menu9", "<b>&nbsp;Email List</b>", "http://swimschool.santaclaraswimclub.org/emaillist.htm")

mymenu2.addSubMenu("menu10", "<b>&nbsp;Employment</b>", "http://swimschool.santaclaraswimclub.org/employment.htm")

mymenu2.showMenu()
