function init()
{
	// 120 vice 75
	menus[0] = new menu(22, "horizontal", 15, 85, 0, 0, "#339933", "#CCFFCC", "Verdana,Helvetica", 9, 
		"bold", "bold", "#000066", "#000066", 1, "black", 2, "rollover:tridown.gif:tridown.gif", false, 
		true, true, true, 9, true, 4, 4, "black");
	menus[0].addItem("http://www.ericdonnelly.com", "", 50, "center", "Home", 0);
	menus[0].addItem("resume.shtml", "", 60, "center", "Resume",0);
	menus[0].addItem("projects.shtml", "", 120, "center", "Projects", 1);
	menus[0].addItem("courses.shtml", "", 110, "center", "Courses", 2);		
	menus[0].addItem("swimming.shtml", "", 100, "center", "Swimming", 3);	
	menus[0].addItem("http://grove.ufl.edu/~ericdonn/cgi-bin/Blah/Blah.cgi", "NEWWIN", 140, "center", "Message Board", 0);
	menus[0].addItem("images/jalbum/jalbum.shtml", "NEWWIN", 40, "center", "Pics", 0);		
	menus[0].addItem("links.shtml", "", 50, "center", "Links", 0);		
	menus[0].addItem("about.shtml", "", 80, "center", "About Me", 0);		
	//h or w of item, align, content parameter(can be rollover:tridown.gif:tridown.gif), # of subs

	//projects submenu
	menus[1] = new menu(120, "vertical", 0, 0, -5, -5, "#339933", "#CCFFCC", "Verdana,Helvetica", 9, 
	"bold", "bold", "#000066", "#000066", 1, "black", 2, 62, false, true, false, true, 6, true, 4, 4, "black");
	menus[1].addItem("projects.shtml#adhoc", "", 33, "left", "802.11 Ad-Hoc",0);	
	menus[1].addItem("projects.shtml#hpn", "", 33, "left", "PCI vs. HyperTransport",0);
	menus[1].addItem("projects.shtml#woman", "", 22, "left", "WoMAN",0);
	menus[1].addItem("projects.shtml#clock", "", 22, "left", "Clock Tower",0);
	menus[1].addItem("projects.shtml#mp3", "", 33, "left", "Audio Transmitter", 0);
	menus[1].addItem("projects.shtml#vlsi", "", 33, "left", "VLSI DSP Filter",0);
	


	//courses submenu
	menus[2] = new menu(110, "vertical", 0, 0, -5, -5, "#339933", "#CCFFCC", "Verdana,Helvetica", 9, 
	"bold", "bold", "#000066", "#000066", 1, "black", 2, 62, false, true, false, true, 6, true, 4, 4, "black");
	menus[2].addItem("courses.shtml#undergrad", "", 22, "left", "Undergraduate", 0);
	menus[2].addItem("courses.shtml#grad", "", 22, "left", "Graduate",0);

	//swimming submenu
	menus[3] = new menu(100, "vertical", 0, 0, -5, -5, "#339933", "#CCFFCC", "Verdana,Helvetica", 9, 
	"bold", "bold", "#000066", "#000066", 1, "black", 2, 62, false, true, false, true, 6, true, 4, 4, "black");
	menus[3].addItem("swimming.shtml#college", "", 22, "left", "College", 0);
	menus[3].addItem("swimming.shtml#nat", "", 22, "left", "National",0);
	menus[3].addItem("swimming.shtml#inter", "", 22, "left", "International",0);
	
} //OUTER CLOSING BRACKET. EVERYTHING ADDED MUST BE ABOVE THIS LINE.
