mymenu2 = new Menu
//defines colour of main table border and positioning
mymenu2.maintableprops("#D0D0D0",1,1,0)
//defines colour of main cells and positioning
mymenu2.maincellprops("left","#CCCCCC","#CCCCCC")
//defines colour of sub table cell borders and positioning
mymenu2.subtableprops("#333333",1,1,0)
//defines colour of sub cells and positioning
mymenu2.subcellprops("left","#FFFFFF","#F1F1F1")
//defines font type, size and colour
mymenu2.fontdetails("Arial",1,"#000000")
mymenu2.startMenu()
//defines the names of the links
mymenu2.addMenu("about","<b>&nbsp;ABOUT US&nbsp;</b>")
mymenu2.addMenu("membership","<b>&nbsp;MEMBERSHIP&nbsp;</b>")
mymenu2.addMenu("members","<b>&nbsp;MEMBERS&nbsp;</b>")
mymenu2.addMenu("news","<b>&nbsp;NEWS&nbsp;</b>")
mymenu2.addMenu("events","<b>&nbsp;EVENTS&nbsp;</b>")
mymenu2.addMenu("contact","<b>&nbsp;CONTACT US&nbsp;</b>")
mymenu2.addMenu("vendors","<b>&nbsp;VENDORS&nbsp;</b>")
mymenu2.showMainMenu()