// menu components

function onLoad() {
    window.onResize = onLoad;
    loadMenus();
}

function loadMenus () {
   
    window.menu1 = new Menu("Courses");
    menu1.addMenuItem("2000 Fall, 344", "top.window.location='http://www.cs.rutgers.edu/~szegedy/00344/index.html'");
    menu1.addMenuItem("2001 Spring, 540", "top.window.location='http://www.cs.rutgers.edu/~szegedy/01540/index.html'");
    menu1.addMenuItem("2001 Fall, 344", "top.window.location='http://www.cs.rutgers.edu/~szegedy/01344/index.html'");
    menu1.addMenuItem("2001 Fall, 529", "top.window.location='http://www.cs.rutgers.edu/~szegedy/01529/syll.html'");
    menu1.addMenuItem("2002 Spring, 344", "top.window.location='http://www.cs.rutgers.edu/~szegedy/02344/index.html'");
    menu1.addMenuItem("2002 Fall 596", "top.window.location='http://www.cs.rutgers.edu/~szegedy/02596/index.html'");
    menu1.addMenuItem("2003 Spring 344", "top.window.location='http://www.cs.rutgers.edu/~szegedy/03344/index.html'");
    menu1.addMenuItem("2004 Spring 344", "top.window.location='http://www.cs.rutgers.edu/~szegedy/04344/index.html'");

    menu1.fontSize = 24;
    menu1.fontWeight = "plain";
    menu1.fontFamily = "arial,helvetica,espy,sans-serif";
    menu1.fontColor = "#ffffff";
    menu1.fontColorHilite = "#ffffff";
    menu1.bgColor = "#555555";
    menu1.menuBorder = 2;
    menu1.menuItemBorder = 2;
    menu1.menuItemBgColor = "#000066";
    menu1.menuLiteBgColor = "#ffffff";
    menu1.menuBorderBgColor = "#777777";
    menu1.menuHiliteBgColor = "#990000";
    menu1.menuContainerBgColor = "#cccccc";

 
    menu1.writeMenus();

}
