function onLoad() {
    if (document.layers) {
        loadMenus();
    }
}

if (document.all) {
    loadMenus();
}

function loadMenus() {

    //Dynamic Menus

    window.myMenu2 = new Menu();

myMenu2.addMenuItem("<Strong><u>Registration Information</u></strong>", "top.window.location='reg.htm'");    
myMenu2.addMenuItem("Pre-Reg: $35.00", "top.window.location='reg.htm'");
myMenu2.addMenuItem("At-Door: $40.00", "top.window.location='reg.htm'");


     

    window.myMenu3 = new Menu();


myMenu3.addMenuItem("<Strong><u>Musical performers</u></strong>", "top.window.location='goh.htm'");
myMenu3.addMenuItem("<b>Featuring:</b>", "top.window.location='goh.htm'");
myMenu3.addMenuItem("Jon 'Bermuda' Schwartz", "top.window.location='goh.htm'");
myMenu3.addMenuItem("Tom Smith:", "top.window.location='gohtom.htm'");	
myMenu3.addMenuItem("The Great Luke Ski:", "top.window.location='gohluke.htm'");
myMenu3.addMenuItem("Larry Weaver:", "top.window.location='gohlarry.htm'");	
myMenu3.addMenuItem("<b>Also:</b>", "top.window.location='goh.htm'");	
myMenu3.addMenuItem("Throwing Toasters", "top.window.location='goh.htm#11'");
myMenu3.addMenuItem("Rob Paravonian", "top.window.location='goh.htm'");
myMenu3.addMenuItem("Tony Goldmark", "top.window.location='goh.htm#3'");
myMenu3.addMenuItem("Sponge Awareness Foundation", "top.window.location='goh#5.htm'");
myMenu3.addMenuItem("Dan Hart", "top.window.location='goh.htm#6'");
myMenu3.addMenuItem("Power Salad", "top.window.location='goh.htm#7'");
myMenu3.addMenuItem("Carla Ulbrich", "top.window.location='goh.htm#8'");
myMenu3.addMenuItem("Robin Nakkula", "top.window.location='goh.htm#10'");
myMenu3.addMenuItem("", "top.window.location='goh.htm'");

    window.myMenu4 = new Menu();

myMenu4.addMenuItem("<Strong><u>Hotel Information</u></strong>", "top.window.location='hotel.htm'");
myMenu4.addMenuItem("Holiday Inn - Southfield", "top.window.location='hotel.htm'");
myMenu4.addMenuItem("26555 Telegraph Rd.", "top.window.location='hotel.htm'");
myMenu4.addMenuItem("Southfield, Mi 48034", "top.window.location='hotel.htm'");
myMenu4.addMenuItem("Phone:(248) 353-7700", "top.window.location='hotel.htm'");
myMenu4.addMenuItem("", "top.window.location='hotel.htm'");
myMenu4.addMenuItem("Single: $89.00", "top.window.location='hotel.htm'");
myMenu4.addMenuItem("Double: $89.00", "top.window.location='hotel.htm'");
myMenu4.addMenuItem("suite: (Call for Price)", "top.window.location='hotel.htm'");
myMenu4.addMenuItem("<strong>Note</strong>: To get discount, ", "top.window.location='hotel.htm'");
myMenu4.addMenuItem("notify you are with ", "top.window.location='hotel.htm'");
myMenu4.addMenuItem("The Funny Music Convention", "top.window.location='hotel.htm'");
myMenu4.addMenuItem("", "top.window.location='hotel.htm'");



window.myMenu5 = new Menu();


myMenu5.addMenuItem("<Strong><u>Who's Who at Con</u></strong>", "top.window.location='who.htm'");
myMenu5.addMenuItem("Bill Putt - ConChair", "top.window.location='bill.htm'");	
myMenu5.addMenuItem("Tim Ryan - Idea Guy", "top.window.location='tim.htm'");
myMenu5.addMenuItem("Frank Schreiber - Webmaster", "top.window.location='frank.htm'");
myMenu5.addMenuItem("Luke Ski", "top.window.location='luke.htm'");
myMenu5.addMenuItem("Clint Davidson - Logo Artist", "top.window.location='clint.htm'");
myMenu5.addMenuItem("Jeff Morris - Demented DJ", "top.window.location='jeff.htm'");
myMenu5.addMenuItem("", "top.window.location='who.htm'");




    myMenu2.writeMenus();

}


