mymenu = new POTMenu

// Defines the size of the main menu items, width and height

mymenu.mainmenuitemsize(130,21)

// Defines the size of the sub menu items, width and height

mymenu.submenuitemsize(130,21)

// Defines the position of the sub menus in relation to the parent

mymenu.submenuplacing(0,0)

// Images that make up the border of the main menu. Optional.

mymenu.mainborderimages("images/left.gif","images/right.gif","images/top.gif","images/bottom.gif")

// Corners of the images that make up the main menu border.

mymenu.mainbordercorners("images/topleft.gif","images/topright.gif","images/botleft.gif","images/botright.gif")

// Left width, right width and height of the top and bottom of the border

mymenu.mainborderdimensions(2,2,2)

// These lines are for the sub menu borders

mymenu.subborderimages("images/subleft.gif","images/right.gif","images/top.gif","images/bottom.gif")

mymenu.subbordercorners("images/subtopleft.gif","images/topright.gif","images/subbotleft.gif","images/botright.gif")

mymenu.subborderdimensions(3,2,2)

// Main menu cell color

mymenu.mainmenucolor("#OOOOOO")

// Sub menu cell color

mymenu.submenucolor("#000000")

// Graphical "join" between a menu and its sub menu. Optional

//mymenu.definejoin("images/join.gif",25)

// Centers text for Netscape 4.7

mymenu.netscapeadjust(3,3)

// The image that is show between the main menu items

mymenu.definemainspacer("images/mauvepixel.gif",2)

// The image that is show between the sub menu items

mymenu.definesubspacer("images/mauvepixel.gif",2)

// This line is required here

mymenu.startMenu()

// Define the main menu.

mymenu.addMenu("home","<b>home</b>", "index.html")

mymenu.addMenu("your jcard","<b>your J-CARD</b>", "")

mymenu.addMenu("deposits","<b>deposits</b>", "deposits.html")

mymenu.addMenu("eligibility","<b>eligibility</b>", "")

mymenu.addMenu("card uses","<b>card uses</b>", "carduses.html")

mymenu.addMenu("parking","<b>parking</b>", "parking.html")

mymenu.addMenu("replacement cards","<b>replacement cards</b>", "")

mymenu.addMenu("incoming freshmen","<b>incoming freshmen</b>", "freshmen.html")

mymenu.addMenu("full-time students","<b>full-time students</b>", "stu_fulltime.html")

mymenu.addMenu("graduate students","<b>graduate students</b>", "graduate.html")

mymenu.addMenu("part-time students","<b>part-time students</b>", "stu_parttime.html")

mymenu.addMenu("faculty & staff","<b>faculty & staff</b>", "factstaff.html")

mymenu.addMenu("transfer students","<b>transfer students</b>", "transfer.html")

mymenu.addMenu("forms","<b>forms</b>", "applications.html")

// This line is required after the main menu is defined.

mymenu.showMainMenu()

// Define the sub menus

mymenu.addSubMenu("your jcard", "", "<b>card info</b>", "info.html")

mymenu.addSubMenu("your jcard", "", "<b>card care</b>", "cardcare.html")

mymenu.addSubMenu("your jcard", "", "<b>jcash</b>", "jcash.html")

mymenu.addSubMenu("eligibility", "students", "<b>students</b>", "el_students.html")

mymenu.addSubMenu("eligibility", "visiting students", "<b>visiting students</b>", "el_vis-stu.html")

mymenu.addSubMenu("eligibility", "post doctorate", "<b>post doctorate</b>", "el_post-doc.html")

mymenu.addSubMenu("eligibility", "faculty & staff", "<b>faculty & staff</b>", "el_fac-sta.html")

mymenu.addSubMenu("replacement cards", "lost cards", "<b>lost cards</b>", "lostcards.html")

mymenu.addSubMenu("replacement cards", "stolen cards", "<b>stolen cards</b>", "stolencards.html")

mymenu.addSubMenu("replacement cards", "damaged cards", "<b>damaged cards</b>", "damagedcards.html")

// This line is required after all menu definitions are finished

mymenu.showMenu()
