//menu objects function onLoad() { window.onResize = onLoad; loadMenus(); } function loadMenus () { window.customMenu = new Menu("Custom Samples") customMenu.addMenuItem("Fishing Tournament" , "top.window.frames[1].location='tournament.htm'"); customMenu.addMenuItem("Boats" , "top.window.frames[1].location='boats.htm'"); customMenu.addMenuItem("Events" , "top.window.frames[1].location='events.htm'"); customMenu.addMenuItem("Restaurants" , "top.window.frames[1].location='restaurants.htm'"); customMenu.addMenuItem("Miscellaneous" , "top.window.frames[1].location='misc.htm'"); window.stockMenu = new Menu("Stock Designs") stockMenu.addMenuItem("Fishing" , "top.window.frames[1].location='fishing.htm'"); stockMenu.addMenuItem("Coastal" , "top.window.frames[1].location='coastal.htm'"); stockMenu.addMenuItem("Specialty" , "top.window.frames[1].location='specialty.htm'"); stockMenu.addMenuItem("Preprints" , "top.window.frames[1].location='preprints.htm'"); window.embroidery = new Menu("embroidery"); embroidery.addMenuItem("Custom Embroidery Samples" , "top.window.frames[1].location='embcustom.htm'"); embroidery.addMenuItem("Stock Embroidery" , "top.window.frames[1].location='embstock.htm'"); window.screenprint = new Menu("screenprint"); screenprint.addMenuItem(customMenu); screenprint.addMenuItem(stockMenu); screenprint.writeMenus(); }