// Menu, addMenuItem, and writeMenus are defined in mm_menu.js

function loadMenus() {
		  if (!window.menu_instructors) {
		  	window.menu_instructors = new Menu("instructors_root",98,18,"",12,"#ffffff","#730099","#730099","#ffffff","center","middle",3,0,150,0,0,true,true,true,0,true,true);
		  	menu_instructors.addMenuItem("Introduction","location='/instructorintro.html'");
		    menu_instructors.addMenuItem("Extended&nbsp;Bio","location='/extendedbio.html'");
		    menu_instructors.hideOnMouseOut=true;
		    menu_instructors.bgColor='#999999';
		
			if (window.menu_tournament && window.menu_books) menu_instructors.writeMenus();
		  }
		  
		  if (!window.menu_tournament) {
		        window.menu_tournament = new Menu("tournament_root",110,18,"",12,"#ffffff","#730099","#730099","#ffffff","center","middle",3,0,150,0,0,true,true,true,0,true,true);
		  menu_tournament.addMenuItem("Local&nbsp;Schedule","location='/tournaments/schedule0910local.html'");
		  menu_tournament.addMenuItem("Locations","location='/tournaments/locations.html'");
		  menu_tournament.addMenuItem("Youth&nbsp;Cup&nbsp;Rules","location='/tournaments/youthcircuitrules.html'");
		  menu_tournament.addMenuItem("2008-2009&nbsp;Schedule","location='/tournaments/schedule0809local.html'");
		  menu_tournament.addMenuItem("USFA&nbsp;Penalties","location='/tournaments/penalties.html'");
		  menu_tournament.hideOnMouseOut=true;
		  menu_tournament.bgColor='#999999';
		
		  if (window.menu_books) menu_tournament.writeMenus();  
		  }
		  
		  if (!window.menu_books) {
		  	window.menu_books = new Menu("books_root",98,18,"",12,"#ffffff","#730099","#730099","#ffffff","center","middle",3,0,150,0,0,true,true,true,0,true,true);
		  	menu_books.addMenuItem("Reading&nbsp;List","location='/readinglist.html'");
		    menu_books.addMenuItem("Viewing&nbsp;List","location='/viewinglist.html'");
		    menu_books.hideOnMouseOut=true;
		    menu_books.bgColor='#999999';
		
			menu_books.writeMenus();
		  }
		} // loadMenus()
		