function showToolbar()
{
	menu = new Menu();
	mstyle = new MenuStyle();
	mstyle.idName = "ejones";	// Unique name
	mstyle.bgColor = "#CC6600";	// bgColor
	mstyle.fgColor = "#FFFF9C";	// fgColor
	mstyle.idStyle = "horizontal";  // "horizontal" or "vertical"
	mstyle.position = "relative";		// null, "absolute", "relative"
	mstyle.bVisible = true;	        // initially visible; true or false
	mstyle.bLeftAligned = 0;
	mstyle.cellSpacing = 0;         // cellspacing
	mstyle.mainMenuWidth = "760";  // menu width; "100%" or "640" (or any other integer)
	mstyle.width = "760";          // menu width; "100%" or "640" (or any other integer)
	mstyle.submenuFrame="null";	// where submenus are displayed or null if non-framed version
	mstyle.mainMenuBorder=false;        // main menu border
	mstyle.menuBorder=false;
	mstyle.onmouseover=null;        // function to call in case of mouse over
	mstyle.onmouseout=null;         // function to call in case of mouse over
	mstyle.holder = "ejones";
	mstyle.level=1;
	mitem = new MenuItem();
	mitem.bgColor = "#CC6600";
	mitem.fgColor = "#FFFF9C";
	menu.setItemStyle(mitem);
	menu.newMenu(mstyle);

	// Add options to menu item
	// addItem("ejones"          // the name of menu item where to add menu option
	//         "Search"             // the name of menu option
	//         1                    // menu level: 1 - top, 2 - submenu, 3 - subsubmenu, etc.
        //         "Internet Search Engines" // menu option title
	//         "Internet Search Engines" // hint
        //	   "http://www.somewhere.com" // URL
	//         null                 // parent name or null if dosn't have
        //         "SmartSubMenu"       // the name of submenu item
        //         0                    // where to display submenu: 0 - bottom, 1 - right, 2 - left
        // );
	menu.addItem("ejones", "idHome", 1, "ejones.com", "Home Page",  "../index.htm", null, null, 0);
	menu.addItem("ejones", "id2002", 1, "2002", null,  null, null, "id2002Sub", 0);
	menu.addItem("ejones", "id2001", 1, "2001", null,  null, null, "id2001Sub", 0);
	menu.addItem("ejones", "id2000", 1, "2000", null,  null, null, "id2000Sub", 0);
	menu.addItem("ejones", "id1999", 1, "1999", null,  null, null, "id1999Sub", 0);
	menu.addItem("ejones", "id1998", 1, "1998", null,  null, null, "id1998Sub", 0);
	menu.addItem("ejones", "id1997", 1, "1997", null,  null, null, "id1997Sub", 0);
	menu.addItem("ejones", "id1996", 1, "1996", null,  null, null, "id1996Sub", 0);
	menu.addItem("ejones", "idWorld", 1, "World Travel", null,  null, null, "idWorldSub", 0);
	menu.addItem("ejones", "idOutdoors", 1, "Outdoors", null,  null, null, "idOutdoorsSub", 0);
	menu.addItem("ejones", "idContact", 1, "Contact Us", null ,  null, null, "idcontactSub", 0);

///////////////////

	mstyle = new MenuStyle();
	mstyle.idName = "idOutdoorsSub";
	mstyle.idStyle = "vertical";
	mstyle.position = "absolute";
	mstyle.bVisible = false;
	mstyle.bLeftAligned = 0;
	mstyle.bgColor = "#cc6600";
	mstyle.mainMenuWidth = "200";
	mstyle.width = "200";
	mstyle.menuBorder=0;
	mstyle.level=2;

	mstyle.holder="";

	menu.newMenu(mstyle);
	menu.addItem("idOutdoorsSub", "idOutdoorsplace", 2, "Outdoor Albums", "Outdoor Albums", "../World/OutdoorsPlace.htm", null, null, 1);
	menu.addItem("idOutdoorsSub", "idCountyHighPoints", 2, "County High Points", "County High Points", "../World/CountyHighPoints.htm", null, null, 1);
	menu.addItem("idOutdoorsSub", "idHighestSummits", 2, "Highest Summits", "Highest Summits", "../World/HighestSummits.htm", null, null, 1);
	menu.addItem("idOutdoorsSub", "idBagNightLogs", 2, "Bag Night Logs", "Bag Night Logs", "../World/BagNightLogs.htm", null, null, 1);
	menu.addItem("idOutdoorsSub", "idHikingProfiles", 2, "Hiking Profiles", "Hiking Profiles", "../World/HikingProfiles.htm", null, null, 1);
	menu.addItem("idOutdoorsSub", "idOutdoorArticles", 2, "Outdoor Articles", "Outdoor Articles", "../World/OutdoorArticles.htm", null, null, 1);
	menu.addItem("idOutdoorsSub", "idPackListBuilder", 2, "Pack List Builder", "Pack List Builder", "../World/PackListBuilder.htm", null, null, 1);

///////////////////

	mstyle = new MenuStyle();
	mstyle.idName = "id2002Sub";
	mstyle.idStyle = "vertical";
	mstyle.position = "absolute";
	mstyle.bVisible = false;
	mstyle.bLeftAligned = 0;
	mstyle.bgColor = "#cc6600";
	mstyle.mainMenuWidth = "150";
	mstyle.width = "150";
	mstyle.menuBorder=0;
	mstyle.level=2;

	mstyle.holder="";

	menu.newMenu(mstyle);
	menu.addItem("id2002Sub", "id2002Winter", 2, "Winter", null, null, null, "id2002WinterSub", 1);
	menu.addItem("id2002Sub", "id2002Spring", 2, "Spring", null, null, null, "id2002SpringSub", 1);
	menu.addItem("id2002Sub", "id2002Summer", 2, "Summer", null, null, null, "id2002SummerSub", 1);
	menu.addItem("id2002Sub", "id2002Fall", 2, "Fall", null, null, null, "id2002FallSub", 1);

///////////////////

	mstyle = new MenuStyle();
	mstyle.idName = "id2001Sub";
	mstyle.idStyle = "vertical";
	mstyle.position = "absolute";
	mstyle.bVisible = false;
	mstyle.bLeftAligned = 0;
	mstyle.bgColor = "#cc6600";
	mstyle.mainMenuWidth = "150";
	mstyle.width = "150";
	mstyle.menuBorder=0;
	mstyle.level=2;

	mstyle.holder="";

	menu.newMenu(mstyle);
	menu.addItem("id2001Sub", "id2001Winter", 2, "Winter", null, null, null, "id2001WinterSub", 1);
	menu.addItem("id2001Sub", "id2001Spring", 2, "Spring", null, null, null, "id2001SpringSub", 1);
	menu.addItem("id2001Sub", "id2001Summer", 2, "Summer", null, null, null, "id2001SummerSub", 1);
	menu.addItem("id2001Sub", "id2001Fall", 2, "Fall", null, null, null, "id2001FallSub", 1);

///////////////////

	mstyle = new MenuStyle();
	mstyle.idName = "id2000Sub";
	mstyle.idStyle = "vertical";
	mstyle.position = "absolute";
	mstyle.bVisible = false;
	mstyle.bLeftAligned = 0;
	mstyle.bgColor = "#cc6600";
	mstyle.mainMenuWidth = "150";
	mstyle.width = "150";
	mstyle.menuBorder=0;
	mstyle.level=2;

	mstyle.holder="";

	menu.newMenu(mstyle);
	menu.addItem("id2000Sub", "id2000Winter", 2, "Winter", null, null, null, "id2000WinterSub", 1);
	menu.addItem("id2000Sub", "id2000Spring", 2, "Spring", null, null, null, "id2000SpringSub", 1);
	menu.addItem("id2000Sub", "id2000Fall", 2, "Fall", null, null, null, "id2000FallSub", 1);

///////////////////

	mstyle = new MenuStyle();
	mstyle.idName = "id1999Sub";
	mstyle.idStyle = "vertical";
	mstyle.position = "absolute";
	mstyle.bVisible = false;
	mstyle.bLeftAligned = 0;
	mstyle.bgColor = "#cc6600";
	mstyle.mainMenuWidth = "150";
	mstyle.width = "150";
	mstyle.menuBorder=0;
	mstyle.level=2;

	mstyle.holder="";

	menu.newMenu(mstyle);
	menu.addItem("id1999Sub", "id1999Winter", 2, "Winter", null, null, null, "id1999WinterSub", 1);
	menu.addItem("id1999Sub", "id1999Spring", 2, "Spring", null, null, null, "id1999SpringSub", 1);
	menu.addItem("id1999Sub", "id1999Summer", 2, "Summer", null, null, null, "id1999SummerSub", 1);
//	menu.addItem("id1999Sub", "id1999Fall", 2, "Fall", null, null, null, "id1999FallSub", 1);

///////////////////

	mstyle = new MenuStyle();
	mstyle.idName = "id1998Sub";
	mstyle.idStyle = "vertical";
	mstyle.position = "absolute";
	mstyle.bVisible = false;
	mstyle.bLeftAligned = 0;
	mstyle.bgColor = "#cc6600";
	mstyle.mainMenuWidth = "150";
	mstyle.width = "150";
	mstyle.menuBorder=0;
	mstyle.level=2;

	mstyle.holder="";

	menu.newMenu(mstyle);
	menu.addItem("id1998Sub", "id1998Winter", 2, "Winter", null, null, null, "id1998WinterSub", 1);
	menu.addItem("id1998Sub", "id1998Spring", 2, "Spring", null, null, null, "id1998SpringSub", 1);
	menu.addItem("id1998Sub", "id1998Summer", 2, "Summer", null, null, null, "id1998SummerSub", 1);
	menu.addItem("id1998Sub", "id1998Fall", 2, "Fall", null, null, null, "id1998FallSub", 1);

///////////////////

	mstyle = new MenuStyle();
	mstyle.idName = "id1997Sub";
	mstyle.idStyle = "vertical";
	mstyle.position = "absolute";
	mstyle.bVisible = false;
	mstyle.bLeftAligned = 0;
	mstyle.bgColor = "#cc6600";
	mstyle.mainMenuWidth = "150";
	mstyle.width = "150";
	mstyle.menuBorder=0;
	mstyle.level=2;

	mstyle.holder="";

	menu.newMenu(mstyle);
	menu.addItem("id1997Sub", "id1997Winter", 2, "Winter", null, null, null, "id1997WinterSub", 1);
	menu.addItem("id1997Sub", "id1997Spring", 2, "Spring", null, null, null, "id1997SpringSub", 1);
	menu.addItem("id1997Sub", "id1997Summer", 2, "Summer", null, null, null, "id1997SummerSub", 1);
	menu.addItem("id1997Sub", "id1997Fall", 2, "Fall", null, null, null, "id1997FallSub", 1);

///////////////////

	mstyle = new MenuStyle();
	mstyle.idName = "id1996Sub";
	mstyle.idStyle = "vertical";
	mstyle.position = "absolute";
	mstyle.bVisible = false;
	mstyle.bLeftAligned = 0;
	mstyle.bgColor = "#cc6600";
	mstyle.mainMenuWidth = "150";
	mstyle.width = "150";
	mstyle.menuBorder=0;
	mstyle.level=2;

	mstyle.holder="";

	menu.newMenu(mstyle);
	menu.addItem("id1996Sub", "id1996Winter", 2, "Winter", null, null, null, "id1996WinterSub", 1);

///////////////////

	mstyle = new MenuStyle();
	mstyle.idName = "id2002FallSub";
	mstyle.idStyle = "vertical";
	mstyle.position = "absolute";
	mstyle.bVisible = false;
	mstyle.bLeftAligned = 0;
	mstyle.bgColor = "#cc6600";
	mstyle.mainMenuWidth = "350";
	mstyle.width = "350";
	mstyle.menuBorder=0;
	mstyle.level=3;

	mstyle.holder="";

	menu.newMenu(mstyle);
	menu.addItem("id2002FallSub", "id2002Sub44", 3, "Bridgeport Mountain Warefare Training Center", "October - 48 images", "../2002/id2002Sub44.htm", null, null, 1);
	menu.addItem("id2002FallSub", "id2002Sub45", 3, "Whitney Day Hike", "November - 18 images", "../2002/id2002Sub45.htm", null, null, 1);
	menu.addItem("id2002FallSub", "id2002Sub46", 3, "Joshua Tree Patrol Campout", "November - 20 images", "../2002/id2002Sub46.htm", null, null, 1);
	menu.addItem("id2002FallSub", "id2002Sub47", 3, "Indian Princesses at Camp Fox", "November - 34 images", "../2002/id2002Sub47.htm", null, null, 1);
	menu.addItem("id2002FallSub", "id2002Sub48", 3, "Riverside Thanksgiving", "November - 5 images", "../2002/id2002Sub48.htm", null, null, 1);
	menu.addItem("id2002FallSub", "id2002Sub49", 3, "Five County High Points", "December - 57 images", "../2002/id2002Sub49.htm", null, null, 1);
	menu.addItem("id2002FallSub", "id2002Sub50", 3, "Joshua Tree Boy Scout Trail", "December - 38 images", "../2002/id2002Sub50.htm", null, null, 1);

///////////////////

	mstyle = new MenuStyle();
	mstyle.idName = "id2002SummerSub";
	mstyle.idStyle = "vertical";
	mstyle.position = "absolute";
	mstyle.bVisible = false;
	mstyle.bLeftAligned = 0;
	mstyle.bgColor = "#cc6600";
	mstyle.mainMenuWidth = "350";
	mstyle.width = "350";
	mstyle.menuBorder=0;
	mstyle.level=3;

	mstyle.holder="";

	menu.newMenu(mstyle);
	menu.addItem("id2002SummerSub", "id2002Sub39", 3, "4th of July San Jacinto Backpacking", "July - 24 images", "../2002/id2002Sub39.htm", null, null, 1);
	menu.addItem("id2002SummerSub", "id2002Sub40", 3, "To the Top of Mount Whitney", "July - 111 images", "../2002/id2002Sub40.htm", null, null, 1);
	menu.addItem("id2002SummerSub", "id2002Sub41", 3, "Hannah's Birthday (Part 3)", "July - 3 images", "../2002/id2002Sub41.htm", null, null, 1);
	menu.addItem("id2002SummerSub", "id2002Sub42", 3, "Scout Cucamonga Weekend", "July - 31 images", "../2002/id2002Sub42.htm", null, null, 1);
	menu.addItem("id2002SummerSub", "id2002Sub43", 3, "Red Mountain Basin Sierra Trek", "August - 99 images", "../2002/id2002Sub43.htm", null, null, 1);

///////////////////

	mstyle = new MenuStyle();
	mstyle.idName = "id2002SpringSub";
	mstyle.idStyle = "vertical";
	mstyle.position = "absolute";
	mstyle.bVisible = false;
	mstyle.bLeftAligned = 0;
	mstyle.bgColor = "#cc6600";
	mstyle.mainMenuWidth = "350";
	mstyle.width = "350";
	mstyle.menuBorder=0;
	mstyle.level=3;

	mstyle.holder="";

	menu.newMenu(mstyle);
	menu.addItem("id2002SpringSub", "id2002Sub13", 3, "Indian Princess Golf Outing", "April - 11 images", "../2002/id2002Sub13.htm", null, null, 1);
	menu.addItem("id2002SpringSub", "id2002Sub14", 3, "St. John Day 1: Plane Trains and Automobiles", "April - 6 images", "../2002/id2002Sub14.htm", null, null, 1);
	menu.addItem("id2002SpringSub", "id2002Sub15", 3, "St. John Day 2: Grootpan and Kiddel Bays", "April - 14 images", "../2002/id2002Sub15.htm", null, null, 1);
	menu.addItem("id2002SpringSub", "id2002Sub16", 3, "St. John Day 3: Cruz Bay and Annaberg Ruins", "April - 25 images", "../2002/id2002Sub16.htm", null, null, 1);
	menu.addItem("id2002SpringSub", "id2002Sub17", 3, "St. John Day 4: Little Lameshur Bay", "April - 38 images", "../2002/id2002Sub17.htm", null, null, 1);
	menu.addItem("id2002SpringSub", "id2002Sub18", 3, "St. John Day 5: Trunk Bay", "April - 32 images", "../2002/id2002Sub18.htm", null, null, 1);
	menu.addItem("id2002SpringSub", "id2002Sub19", 3, "St. John Day 6: Grootpan and Miss Lucy's", "April - 21 images", "../2002/id2002Sub19.htm", null, null, 1);
	menu.addItem("id2002SpringSub", "id2002Sub20", 3, "St. John Day 7: Lameshur and Salt Pond Bays", "April - 37 images", "../2002/id2002Sub20.htm", null, null, 1);
	menu.addItem("id2002SpringSub", "id2002Sub21", 3, "St. John Day 8: Ferry Ride from Cruz Bay", "April - 20 images", "../2002/id2002Sub21.htm", null, null, 1);
	menu.addItem("id2002SpringSub", "id2002Sub22", 3, "Harding Canyon to Laurel Springs Hike", "April - 11 images", "../2002/id2002Sub22.htm", null, null, 1);
	menu.addItem("id2002SpringSub", "id2002Sub23", 3, "In the Clouds on Santiago Peak", "April - 37 images", "../2002/id2002Sub23.htm", null, null, 1);
        menu.addItem("id2002SpringSub", "id2002Sub24", 3, "Indian Princess at Camp Pendleton", "April - 49 images", "../2002/id2002Sub24.htm", null, null, 1);
        menu.addItem("id2002SpringSub", "id2002Sub25", 3, "Mount Baldy Day Hike", "May - 42 images", "../2002/id2002Sub25.htm", null, null, 1);
        menu.addItem("id2002SpringSub", "id2002Sub26", 3, "Laguna Coast Wilderness Day Hike", "May - 28 images", "../2002/id2002Sub26.htm", null, null, 1);
        menu.addItem("id2002SpringSub", "id2002Sub30", 3, "Scout Weekend in the San Gorgonio Wilderness", "May - 39 images", "../2002/id2002Sub30.htm", null, null, 1);
        menu.addItem("id2002SpringSub", "id2002Sub32", 3, "San Jacinto via Devil's Slide Trail", "June - 49 images", "../2002/id2002Sub32.htm", null, null, 1);
        menu.addItem("id2002SpringSub", "id2002Sub35", 3, "San Gorgonio via Vivian Creek Trail", "June - 39 images", "../2002/id2002Sub35.htm", null, null, 1);
        menu.addItem("id2002SpringSub", "id2002Sub36", 3, "Ryan's 6th Grade Graduation", "June - 14 images", "../2002/id2002Sub36.htm", null, null, 1);
        menu.addItem("id2002SpringSub", "id2002Sub37", 3, "Hannah's First Backpacking Trip", "June - 37 images", "../2002/id2002Sub37.htm", null, null, 1);
        menu.addItem("id2002SpringSub", "id2002Sub38", 3, "Icehouse Canyon Baldy Notch Loop", "June - 20 images", "../2002/id2002Sub38.htm", null, null, 1);

///////////////////

	mstyle = new MenuStyle();
	mstyle.idName = "id2002WinterSub";
	mstyle.idStyle = "vertical";
	mstyle.position = "absolute";
	mstyle.bVisible = false;
	mstyle.bLeftAligned = 0;
	mstyle.bgColor = "#cc6600";
	mstyle.mainMenuWidth = "350";
	mstyle.width = "350";
	mstyle.menuBorder=0;
	mstyle.level=3;

	mstyle.holder="";

	menu.newMenu(mstyle);
	menu.addItem("id2002WinterSub", "id2002Sub1", 3, "Solo Hike to Little Round Valley", "January - 27 images", "../2002/id2002Sub1.htm", null, null, 1);
	menu.addItem("id2002WinterSub", "id2002Sub2", 3, "Ryan and CJ -- Paintball Warriors", "January - 13 images", "../2002/id2002Sub2.htm", null, null, 1);
	menu.addItem("id2002WinterSub", "id2002Sub3", 3, "Scouts Camping at Anza-Borrego", "January - 18 images", "../2002/id2002Sub3.htm", null, null, 1);
	menu.addItem("id2002WinterSub", "id2002Sub4", 3, "San Jacinto Wilderness Traverse", "January - 58 images", "../2002/id2002Sub4.htm", null, null, 1);
	menu.addItem("id2002WinterSub", "id2002Sub5", 3, "Hannah on Cable TV and Science Fair", "February - 7 images", "../2002/id2002Sub5.htm", null, null, 1);
	menu.addItem("id2002WinterSub", "id2002Sub6", 3, "Idyllwild Family Camping", "February - 30 images", "../2002/id2002Sub6.htm", null, null, 1);
	menu.addItem("id2002WinterSub", "id2002Sub7", 3, "Indian Princess Camp Oakes", "February - 43 images", "../2002/id2002Sub7.htm", null, null, 1);
	menu.addItem("id2002WinterSub", "id2002Sub8", 3, "Eastern Sierra Snowshoe Camping", "March - 46 images", "../2002/id2002Sub8.htm", null, null, 1);
	menu.addItem("id2002WinterSub", "id2002Sub9", 3, "Jenny's Birthday", "March - 12 images", "../2002/id2002Sub9.htm", null, null, 1);
	menu.addItem("id2002WinterSub", "id2002Sub10", 3, "Limestone-Whiting Wilderness Hike", "March - 11 images", "../2002/id2002Sub10.htm", null, null, 1);
	menu.addItem("id2002WinterSub", "id2002Sub11", 3, "Ryan's Beach Birthday", "March - 15 images", "../2002/id2002Sub11.htm", null, null, 1);
	menu.addItem("id2002WinterSub", "id2002Sub12", 3, "Casper's Wilderness Pre-Camporee Camping", "March - 8 images", "../2002/id2002Sub12.htm", null, null, 1);

///////////////////

	mstyle = new MenuStyle();
	mstyle.idName = "id2001WinterSub";
	mstyle.idStyle = "vertical";
	mstyle.position = "absolute";
	mstyle.bVisible = false;
	mstyle.bLeftAligned = 0;
	mstyle.bgColor = "#cc6600";
	mstyle.mainMenuWidth = "350";
	mstyle.width = "350";
	mstyle.menuBorder=0;
	mstyle.level=3;

	mstyle.holder="";

	menu.newMenu(mstyle);
	menu.addItem("id2001WinterSub", "id2001Sub1", 3, "Hannah as Betsy Ross", "February - 3 images", "../2001/id2001Sub1.htm", null, null, 1);
	menu.addItem("id2001WinterSub", "id2001Sub2", 3, "Ryan Arrow of Light Ceremony", "February - 13 images", "../2001/id2001Sub2.htm", null, null, 1);
	menu.addItem("id2001WinterSub", "id2001Sub3", 3, "Indian Princess Big Bear Sledding", "February - 10 images", "../2001/id2001Sub3.htm", null, null, 1);
	menu.addItem("id2001WinterSub", "id2001Sub4", 3, "Ryan Trumpet Class", "March - 2 images", "../2001/id2001Sub4.htm", null, null, 1);


///////////////////

	mstyle = new MenuStyle();
	mstyle.idName = "id2001SpringSub";
	mstyle.idStyle = "vertical";
	mstyle.position = "absolute";
	mstyle.bVisible = false;
	mstyle.bLeftAligned = 0;
	mstyle.bgColor = "#cc6600";
	mstyle.mainMenuWidth = "350";
	mstyle.width = "350";
	mstyle.menuBorder=0;
	mstyle.level=3;

	mstyle.holder="";

	menu.newMenu(mstyle);
	menu.addItem("id2001SpringSub", "id2001Sub5", 3, "Castaway Cay", "March - 7 images", "../2001/id2001Sub5.htm", null, null, 1);
	menu.addItem("id2001SpringSub", "id2001Sub6", 3, "Nassau Bahamas", "March - 9 images", "../2001/id2001Sub6.htm", null, null, 1);
	menu.addItem("id2001SpringSub", "id2001Sub7", 3, "MS Disney Wonder", "March - 36 images", "../2001/id2001Sub7.htm", null, null, 1);
	menu.addItem("id2001SpringSub", "id2001Sub8", 3, "Orlando SeaWorld and Discovery Cove", "April - 46 images", "../2001/id2001Sub8.htm", null, null, 1);
	menu.addItem("id2001SpringSub", "id2001Sub9", 3, "Lytle Creek Middle Fork", "April - 16 images", "../2001/id2001Sub9.htm", null, null, 1);
	menu.addItem("id2001SpringSub", "id2001Sub10", 3, "Indian Princess Beach Camping at Pendleton", "April - 41 images", "../2001/id2001Sub10.htm", null, null, 1);
	menu.addItem("id2001SpringSub", "id2001Sub11", 3, "Camping and Rafting on Kings River", "May - 42 images", "../2001/id2001Sub11.htm", null, null, 1);
	menu.addItem("id2001SpringSub", "id2001Sub12", 3, "Ryan at Irvine Junior Games", "May - 12 images", "../2001/id2001Sub12.htm", null, null, 1);
	menu.addItem("id2001SpringSub", "id2001Sub13", 3, "Grandparent Visit Newport Beach", "May - 29 images", "../2001/id2001Sub13.htm", null, null, 1);
	menu.addItem("id2001SpringSub", "id2001Sub14", 3, "Indian Princess Father Daughter Dance", "June - 27 images", "../2001/id2001Sub14.htm", null, null, 1);
	menu.addItem("id2001SpringSub", "id2001Sub15", 3, "Boy Scout Court of Honor Tenderfoot", "June - 9 images", "../2001/id2001Sub15.htm", null, null, 1);
	menu.addItem("id2001SpringSub", "id2001Sub16", 3, "Hanna Flat Campgrounds and Hiking the PCT", "June - 35 images", "../2001/id2001Sub16.htm", null, null, 1);
	menu.addItem("id2001SpringSub", "id2001Sub17", 3, "Orange County Play", "June - 2 images", "../2001/id2001Sub17.htm", null, null, 1);


///////////////////

	mstyle = new MenuStyle();
	mstyle.idName = "id2001SummerSub";
	mstyle.idStyle = "vertical";
	mstyle.position = "absolute";
	mstyle.bVisible = false;
	mstyle.bLeftAligned = 0;
	mstyle.bgColor = "#cc6600";
	mstyle.mainMenuWidth = "350";
	mstyle.width = "350";
	mstyle.menuBorder=0;
	mstyle.level=3;

	mstyle.holder="";

	menu.newMenu(mstyle);
	menu.addItem("id2001SummerSub", "id2001Sub18", 3, "Almost Appendicitis", "June - 4 images", "../2001/id2001Sub18.htm", null, null, 1);
	menu.addItem("id2001SummerSub", "id2001Sub19", 3, "Hannah's Birthday", "June - 15 images", "../2001/id2001Sub19.htm", null, null, 1);
	menu.addItem("id2001SummerSub", "id2001Sub20", 3, "Holy Jim Falls Hike", "June - 10 images", "../2001/id2001Sub20.htm", null, null, 1);
	menu.addItem("id2001SummerSub", "id2001Sub21", 3, "Pretty Pets", "June - 3 images", "../2001/id2001Sub21.htm", null, null, 1);
	menu.addItem("id2001SummerSub", "id2001Sub22", 3, "Disney California Adventure", "June - 15 images", "../2001/id2001Sub22.htm", null, null, 1);
	menu.addItem("id2001SummerSub", "id2001Sub25", 3, "Visiting Riverside", "July - 34 images", "../2001/id2001Sub25.htm", null, null, 1);
	menu.addItem("id2001SummerSub", "id2001Sub23", 3, "Backpacking in the Cucamonga Wilderness", "July - 25 images", "../2001/id2001Sub23.htm", null, null, 1);
	menu.addItem("id2001SummerSub", "id2001Sub24", 3, "Sequoia Forest and Camp Chawanakee", "July - 17 images", "../2001/id2001Sub24.htm", null, null, 1);
	menu.addItem("id2001SummerSub", "id2001Sub26", 3, "Angels Baseball Game", "August - 5 images", "../2001/id2001Sub26.htm", null, null, 1);
	menu.addItem("id2001SummerSub", "id2001Sub27", 3, "Cucamonga with CJ and Clayton", "September - 21 images", "../2001/id2001Sub27.htm", null, null, 1);
	menu.addItem("id2001SummerSub", "id2001Sub28", 3, "San Jacinto Peak and Round Valley Camp", "September - 27 images", "../2001/id2001Sub28.htm", null, null, 1);
	menu.addItem("id2001SummerSub", "id2001Sub29", 3, "Laguna Beach - North Crescent Beach", "September - 20 images", "../2001/id2001Sub29.htm", null, null, 1);
	menu.addItem("id2001SummerSub", "id2001Sub30", 3, "Silly Friends", "September - 8 images", "../2001/id2001Sub30.htm", null, null, 1);



///////////////////

	mstyle = new MenuStyle();
	mstyle.idName = "id2001FallSub";
	mstyle.idStyle = "vertical";
	mstyle.position = "absolute";
	mstyle.bVisible = false;
	mstyle.bLeftAligned = 0;
	mstyle.bgColor = "#cc6600";
	mstyle.mainMenuWidth = "350";
	mstyle.width = "350";
	mstyle.menuBorder=0;
	mstyle.level=3;

	mstyle.holder="";

	menu.newMenu(mstyle);
	menu.addItem("id2001FallSub", "id2001Sub31", 3, "Doheny Beach Camping", "October - 16 images", "../2001/id2001Sub31.htm", null, null, 1);
	menu.addItem("id2001FallSub", "id2001Sub32", 3, "Ryan's Braces Off", "October - 3 images", "../2001/id2001Sub32.htm", null, null, 1);
	menu.addItem("id2001FallSub", "id2001Sub33", 3, "Quilting Bee", "October - 4 images", "../2001/id2001Sub33.htm", null, null, 1);
	menu.addItem("id2001FallSub", "id2001Sub34", 3, "Dark Canyon Camping", "October - 13 images", "../2001/id2001Sub34.htm", null, null, 1);
	menu.addItem("id2001FallSub", "id2001Sub35", 3, "Ryan off to Arbolado Outdoor Science Camp", "October - 26 images", "../2001/id2001Sub35.htm", null, null, 1);
	menu.addItem("id2001FallSub", "id2001Sub36", 3, "BSA High Adventure Training in Angeles Forest", "October - 36 images", "../2001/id2001Sub36.htm", null, null, 1);
	menu.addItem("id2001FallSub", "id2001Sub37", 3, "Day Hike to Mount Lowe", "November - 17 images", "../2001/id2001Sub37.htm", null, null, 1);
	menu.addItem("id2001FallSub", "id2001Sub40", 3, "Hannah at Mission San Juan Capistrano", "November - 19 images", "../2001/id2001Sub40.htm", null, null, 1);
	menu.addItem("id2001FallSub", "id2001Sub38", 3, "Santa Cruz Island with the Troop", "November - 48 images", "../2001/id2001Sub38.htm", null, null, 1);
	menu.addItem("id2001FallSub", "id2001Sub39", 3, "Santa Catalina Island with the Tribe", "November - 59 images", "../2001/id2001Sub39.htm", null, null, 1);
	menu.addItem("id2001FallSub", "id2001Sub41", 3, "Thanksgiving Day", "November - 5 images", "../2001/id2001Sub41.htm", null, null, 1);
	menu.addItem("id2001FallSub", "id2001Sub42", 3, "Gingerbread and Palm Springs Aerial Tramway", "December - 25 images", "../2001/id2001Sub42.htm", null, null, 1);
	menu.addItem("id2001FallSub", "id2001Sub43", 3, "Christmas Day and Beyond", "December - 24 images", "../2001/id2001Sub43.htm", null, null, 1);


///////////////////

	mstyle = new MenuStyle();
	mstyle.idName = "id2000FallSub";
	mstyle.idStyle = "vertical";
	mstyle.position = "absolute";
	mstyle.bVisible = false;
	mstyle.bLeftAligned = 0;
	mstyle.bgColor = "#cc6600";
	mstyle.mainMenuWidth = "350";
	mstyle.width = "350";
	mstyle.menuBorder=0;
	mstyle.level=3;

	mstyle.holder="";

	menu.newMenu(mstyle);
	menu.addItem("id2000FallSub", "id2000Sub5", 3, "Odds and Ends", "October - 14 images", "../2000/id2000Sub5.htm", null, null, 1);
	menu.addItem("id2000FallSub", "id2000Sub6", 3, "Santa Catalina Island", "December - 23 images", "../2000/id2000Sub6.htm", null, null, 1);


///////////////////

	mstyle = new MenuStyle();
	mstyle.idName = "id2000SpringSub";
	mstyle.idStyle = "vertical";
	mstyle.position = "absolute";
	mstyle.bVisible = false;
	mstyle.bLeftAligned = 0;
	mstyle.bgColor = "#cc6600";
	mstyle.mainMenuWidth = "350";
	mstyle.width = "350";
	mstyle.menuBorder=0;
	mstyle.level=3;

	mstyle.holder="";

	menu.newMenu(mstyle);
	menu.addItem("id2000SpringSub", "id2000Sub4", 3, "Hannah End of School", "May - 5 images", "../2000/id2000Sub4.htm", null, null, 1);


///////////////////

	mstyle = new MenuStyle();
	mstyle.idName = "id2000WinterSub";
	mstyle.idStyle = "vertical";
	mstyle.position = "absolute";
	mstyle.bVisible = false;
	mstyle.bLeftAligned = 0;
	mstyle.bgColor = "#cc6600";
	mstyle.mainMenuWidth = "350";
	mstyle.width = "350";
	mstyle.menuBorder=0;
	mstyle.level=3;

	mstyle.holder="";

	menu.newMenu(mstyle);
	menu.addItem("id2000WinterSub", "id2000Sub1", 3, "Ryan Violin Concert", "January - 6 images", "../2000/id2000Sub1.htm", null, null, 1);
	menu.addItem("id2000WinterSub", "id2000Sub2", 3, "Snowboarding at Snow Summit", "January - 24 images", "../2000/id2000Sub2.htm", null, null, 1);
	menu.addItem("id2000WinterSub", "id2000Sub3", 3, "St John USVI", "February - 46 images", "../2000/id2000Sub3.htm", null, null, 1);


///////////////////

	mstyle = new MenuStyle();
	mstyle.idName = "id1999FallSub";
	mstyle.idStyle = "vertical";
	mstyle.position = "absolute";
	mstyle.bVisible = false;
	mstyle.bLeftAligned = 0;
	mstyle.bgColor = "#cc6600";
	mstyle.mainMenuWidth = "350";
	mstyle.width = "350";
	mstyle.menuBorder=0;
	mstyle.level=3;

	mstyle.holder="";

	menu.newMenu(mstyle);
	menu.addItem("id1999FallSub", "id1999Sub12", 3, "Visiting Riverside Again", "September - 7 images", "../1999/id1999Sub12.htm", null, null, 1);
	menu.addItem("id1999FallSub", "id1999Sub13", 3, "Family Trip to Colonial Williamsburg", "September - 30 images", "../1999/id1999Sub13.htm", null, null, 1);
	menu.addItem("id1999FallSub", "id1999Sub14", 3, "Ryan's Red Belt Ceremony", "October - 3 images", "../1999/id1999Sub14.htm", null, null, 1);
	menu.addItem("id1999FallSub", "id1999Sub15", 3, "Indian Princess Bowling", "October - 9 images", "../1999/id1999Sub15.htm", null, null, 1);
	menu.addItem("id1999FallSub", "id1999Sub16", 3, "Bommer Canyon with Indian Princesses", "October - 26 images", "../1999/id1999Sub16.htm", null, null, 1);
	menu.addItem("id1999FallSub", "id1999Sub17", 3, "Halloween Cat", "October - 2 images", "../1999/id1999Sub17.htm", null, null, 1);
	menu.addItem("id1999FallSub", "id1999Sub18", 3, "Rancho Las Palmas Resort", "November - 12 images", "../1999/id1999Sub18.htm", null, null, 1);
	menu.addItem("id1999FallSub", "id1999Sub19", 3, "Thanksgiving Portraits", "November - 3 images", "../1999/id1999Sub19.htm", null, null, 1);


///////////////////

	mstyle = new MenuStyle();
	mstyle.idName = "id1999SummerSub";
	mstyle.idStyle = "vertical";
	mstyle.position = "absolute";
	mstyle.bVisible = false;
	mstyle.bLeftAligned = 0;
	mstyle.bgColor = "#cc6600";
	mstyle.mainMenuWidth = "350";
	mstyle.width = "350";
	mstyle.menuBorder=0;
	mstyle.level=3;

	mstyle.holder="";

	menu.newMenu(mstyle);
	menu.addItem("id1999SummerSub", "id1999Sub7", 3, "New Kitty and a Quilt", "June - 14 images", "../1999/id1999Sub7.htm", null, null, 1);
	menu.addItem("id1999SummerSub", "id1999Sub8", 3, "Last Day of School", "June - 4 images", "../1999/id1999Sub8.htm", null, null, 1);
	menu.addItem("id1999SummerSub", "id1999Sub9", 3, "Camping at Marion Mountain in Idyllwild", "July - 18 images", "../1999/id1999Sub9.htm", null, null, 1);
	menu.addItem("id1999SummerSub", "id1999Sub10", 3, "Hannah and Sarah at the Pool", "July - 4 images", "../1999/id1999Sub10.htm", null, null, 1);
	menu.addItem("id1999SummerSub", "id1999Sub11", 3, "Ryan Back from Riverside", "July - 8 images", "../1999/id1999Sub11.htm", null, null, 1);


///////////////////

	mstyle = new MenuStyle();
	mstyle.idName = "id1999SpringSub";
	mstyle.idStyle = "vertical";
	mstyle.position = "absolute";
	mstyle.bVisible = false;
	mstyle.bLeftAligned = 0;
	mstyle.bgColor = "#cc6600";
	mstyle.mainMenuWidth = "350";
	mstyle.width = "350";
	mstyle.menuBorder=0;
	mstyle.level=3;

	mstyle.holder="";

	menu.newMenu(mstyle);
	menu.addItem("id1999SpringSub", "id1999Sub6", 3, "Indian Princess Campout at Camp Pendleton", "May - 37 images", "../1999/id1999Sub6.htm", null, null, 1);


///////////////////

	mstyle = new MenuStyle();
	mstyle.idName = "id1999WinterSub";
	mstyle.idStyle = "vertical";
	mstyle.position = "absolute";
	mstyle.bVisible = false;
	mstyle.bLeftAligned = 0;
	mstyle.bgColor = "#cc6600";
	mstyle.mainMenuWidth = "350";
	mstyle.width = "350";
	mstyle.menuBorder=0;
	mstyle.level=3;

	mstyle.holder="";

	menu.newMenu(mstyle);
	menu.addItem("id1999WinterSub", "id1999Sub1", 3, "Huntington Dog Beach on New Year's Day", "January - 8 images", "../1999/id1999Sub1.htm", null, null, 1);
	menu.addItem("id1999WinterSub", "id1999Sub2", 3, "Family Vacation to San Francisco", "January - 32 images", "../1999/id1999Sub2.htm", null, null, 1);
	menu.addItem("id1999WinterSub", "id1999Sub3", 3, "Scout Hike to Robber's Cave", "February - 8 images", "../1999/id1999Sub3.htm", null, null, 1);
	menu.addItem("id1999WinterSub", "id1999Sub4", 3, "Big Bear Camp with the Indian Princesses", "February - 27 images", "../1999/id1999Sub4.htm", null, null, 1);
	menu.addItem("id1999WinterSub", "id1999Sub5", 3, "Square Dance Ready and Carlsbad Flower Fields", "March - 8 images", "../1999/id1999Sub5.htm", null, null, 1);


///////////////////

	mstyle = new MenuStyle();
	mstyle.idName = "id1998FallSub";
	mstyle.idStyle = "vertical";
	mstyle.position = "absolute";
	mstyle.bVisible = false;
	mstyle.bLeftAligned = 0;
	mstyle.bgColor = "#cc6600";
	mstyle.mainMenuWidth = "350";
	mstyle.width = "350";
	mstyle.menuBorder=0;
	mstyle.level=3;

	mstyle.holder="";

	menu.newMenu(mstyle);
	menu.addItem("id1998FallSub", "id1998Sub17", 3, "Assorted Kid Pictures", "September/October - 11 images", "../1998/id1998Sub17.htm", null, null, 1);
	menu.addItem("id1998FallSub", "id1998Sub18", 3, "Camping at Mount Palomar", "October - 34 images", "../1998/id1998Sub18.htm", null, null, 1);
	menu.addItem("id1998FallSub", "id1998Sub19", 3, "Indian Princess Campout", "October - 35 images", "../1998/id1998Sub19.htm", null, null, 1);
	menu.addItem("id1998FallSub", "id1998Sub20", 3, "Halloween Costume Contest", "October - 8 images", "../1998/id1998Sub20.htm", null, null, 1);
	menu.addItem("id1998FallSub", "id1998Sub21", 3, "Kids and Pets", "November - 16 images", "../1998/id1998Sub21.htm", null, null, 1);
	menu.addItem("id1998FallSub", "id1998Sub22", 3, "Cub Scout Visit to the Audubon House", "December - 4 images", "../1998/id1998Sub22.htm", null, null, 1);
	menu.addItem("id1998FallSub", "id1998Sub23", 3, "Christmas", "December - 13 images", "../1998/id1998Sub23.htm", null, null, 1);


///////////////////

	mstyle = new MenuStyle();
	mstyle.idName = "id1998SummerSub";
	mstyle.idStyle = "vertical";
	mstyle.position = "absolute";
	mstyle.bVisible = false;
	mstyle.bLeftAligned = 0;
	mstyle.bgColor = "#cc6600";
	mstyle.mainMenuWidth = "350";
	mstyle.width = "350";
	mstyle.menuBorder=0;
	mstyle.level=3;

	mstyle.holder="";

	menu.newMenu(mstyle);
	menu.addItem("id1998SummerSub", "id1998Sub12", 3, "Dance Recital", "June - 12 images", "../1998/id1998Sub12.htm", null, null, 1);
	menu.addItem("id1998SummerSub", "id1998Sub13", 3, "Visit to Terre Haute", "July - 12 images", "../1998/id1998Sub13.htm", null, null, 1);
	menu.addItem("id1998SummerSub", "id1998Sub14", 3, "4th of July at Riverside", "July - 19 images", "../1998/id1998Sub14.htm", null, null, 1);
	menu.addItem("id1998SummerSub", "id1998Sub15", 3, "Lunch across the Potomac", "July - 16 images", "../1998/id1998Sub15.htm", null, null, 1);
	menu.addItem("id1998SummerSub", "id1998Sub16", 3, "Picnic Beach", "August - 4 images", "../1998/id1998Sub16.htm", null, null, 1);


///////////////////

	mstyle = new MenuStyle();
	mstyle.idName = "id1998SpringSub";
	mstyle.idStyle = "vertical";
	mstyle.position = "absolute";
	mstyle.bVisible = false;
	mstyle.bLeftAligned = 0;
	mstyle.bgColor = "#cc6600";
	mstyle.mainMenuWidth = "350";
	mstyle.width = "350";
	mstyle.menuBorder=0;
	mstyle.level=3;

	mstyle.holder="";

	menu.newMenu(mstyle);
	menu.addItem("id1998SpringSub", "id1998Sub7", 3, "Easter in Irvine", "April - 11 images", "../1998/id1998Sub7.htm", null, null, 1);
	menu.addItem("id1998SpringSub", "id1998Sub8", 3, "Corona del Mar Ryan Hanging Ten", "April - 11 images", "../1998/id1998Sub8.htm", null, null, 1);
	menu.addItem("id1998SpringSub", "id1998Sub9", 3, "Cub Scout Meeting", "May - 10 images", "../1998/id1998Sub9.htm", null, null, 1);
	menu.addItem("id1998SpringSub", "id1998Sub10", 3, "Hannah's Field Trip to Centennial Farms", "May - 16 images", "../1998/id1998Sub10.htm", null, null, 1);
	menu.addItem("id1998SpringSub", "id1998Sub11", 3, "Hannah's 6th Birthday Parties", "May - 26 images", "../1998/id1998Sub11.htm", null, null, 1);


///////////////////

	mstyle = new MenuStyle();
	mstyle.idName = "id1998WinterSub";
	mstyle.idStyle = "vertical";
	mstyle.position = "absolute";
	mstyle.bVisible = false;
	mstyle.bLeftAligned = 0;
	mstyle.bgColor = "#cc6600";
	mstyle.mainMenuWidth = "350";
	mstyle.width = "350";
	mstyle.menuBorder=0;
	mstyle.level=3;

	mstyle.holder="";

	menu.newMenu(mstyle);
	menu.addItem("id1998WinterSub", "id1998Sub1", 3, "Snow at Lake Arrowhead", "January - 8 images", "../1998/id1998Sub1.htm", null, null, 1);
	menu.addItem("id1998WinterSub", "id1998Sub2", 3, "Newport Beach Scout Sea Base", "March - 8 images", "../1998/id1998Sub2.htm", null, null, 1);
	menu.addItem("id1998WinterSub", "id1998Sub3", 3, "Hannah Kindergarden", "March - 10 images", "../1998/id1998Sub3.htm", null, null, 1);
	menu.addItem("id1998WinterSub", "id1998Sub4", 3, "Ryan's Birthday Skating Party", "March - 23 images", "../1998/id1998Sub4.htm", null, null, 1);
	menu.addItem("id1998WinterSub", "id1998Sub5", 3, "Grandpa Bud and Aunt Betsy at LAX", "March - 4 images", "../1998/id1998Sub5.htm", null, null, 1);
	menu.addItem("id1998WinterSub", "id1998Sub6", 3, "Ryan's Green Belt Award Ceremony", "March - 4 images", "../1998/id1998Sub6.htm", null, null, 1);


///////////////////

	mstyle = new MenuStyle();
	mstyle.idName = "id1997FallSub";
	mstyle.idStyle = "vertical";
	mstyle.position = "absolute";
	mstyle.bVisible = false;
	mstyle.bLeftAligned = 0;
	mstyle.bgColor = "#cc6600";
	mstyle.mainMenuWidth = "350";
	mstyle.width = "350";
	mstyle.menuBorder=0;
	mstyle.level=3;

	mstyle.holder="";

	menu.newMenu(mstyle);
	menu.addItem("id1997FallSub", "id1997Sub13", 3, "Tennis Tournament", "September - 5 images", "../1997/id1997Sub13.htm", null, null, 1);
	menu.addItem("id1997FallSub", "id1997Sub14", 3, "School Award Ceremonies", "September - 5 images", "../1997/id1997Sub14.htm", null, null, 1);
	menu.addItem("id1997FallSub", "id1997Sub15", 3, "Bowling", "September - 4 images", "../1997/id1997Sub15.htm", null, null, 1);
	menu.addItem("id1997FallSub", "id1997Sub16", 3, "Grandpa Bud Beach Trip", "September - 11 images", "../1997/id1997Sub16.htm", null, null, 1);
	menu.addItem("id1997FallSub", "id1997Sub17", 3, "Picnic Beach with Amber", "September - 16 images", "../1997/id1997Sub17.htm", null, null, 1);
	menu.addItem("id1997FallSub", "id1997Sub18", 3, "New Bicycles", "October - 5 images", "../1997/id1997Sub18.htm", null, null, 1);
	menu.addItem("id1997FallSub", "id1997Sub19", 3, "School Halloween Party", "October - 4 images", "../1997/id1997Sub19.htm", null, null, 1);
	menu.addItem("id1997FallSub", "id1997Sub20", 3, "San Diego Wild Animal Park", "November - 11 images", "../1997/id1997Sub20.htm", null, null, 1);
	menu.addItem("id1997FallSub", "id1997Sub21", 3, "Christmas Day", "December - 5 images", "../1997/id1997Sub21.htm", null, null, 1);
	menu.addItem("id1997FallSub", "id1997Sub22", 3, "Other Christmas Eve Festivities", "December - 13 images", "../1997/id1997Sub22.htm", null, null, 1);
	menu.addItem("id1997FallSub", "id1997Sub23", 3, "Christmas Eve at Corona del Mar", "December - 22 images", "../1997/id1997Sub23.htm", null, null, 1);


///////////////////

	mstyle = new MenuStyle();
	mstyle.idName = "id1997SummerSub";
	mstyle.idStyle = "vertical";
	mstyle.position = "absolute";
	mstyle.bVisible = false;
	mstyle.bLeftAligned = 0;
	mstyle.bgColor = "#cc6600";
	mstyle.mainMenuWidth = "350";
	mstyle.width = "350";
	mstyle.menuBorder=0;
	mstyle.level=3;

	mstyle.holder="";

	menu.newMenu(mstyle);
	menu.addItem("id1997SummerSub", "id1997Sub3", 3, "50th Wedding Anniversary Party", "June - 15 images", "../1997/id1997Sub3.htm", null, null, 1);
	menu.addItem("id1997SummerSub", "id1997Sub4", 3, "Hannah's Last Day of Pre-school", "June - 4 images", "../1997/id1997Sub4.htm", null, null, 1);
	menu.addItem("id1997SummerSub", "id1997Sub5", 3, "Eric's Scuba Diving: Dives 1 and 2", "June - 8 images", "../1997/id1997Sub5.htm", null, null, 1);
	menu.addItem("id1997SummerSub", "id1997Sub6", 3, "Jenny's Scuba Diving: Dives 4 and 5", "June - 22 images", "../1997/id1997Sub6.htm", null, null, 1);
	menu.addItem("id1997SummerSub", "id1997Sub7", 3, "Sunkissed Summer", "July - 7 images", "../1997/id1997Sub7.htm", null, null, 1);
	menu.addItem("id1997SummerSub", "id1997Sub8", 3, "It's a New Puppy!", "July - 10 images", "../1997/id1997Sub8.htm", null, null, 1);
	menu.addItem("id1997SummerSub", "id1997Sub9", 3, "Santa Catalina Boat Dive", "July - 17 images", "../1997/id1997Sub9.htm", null, null, 1);
	menu.addItem("id1997SummerSub", "id1997Sub10", 3, "First Day of School", "July - 19 images", "../1997/id1997Sub10.htm", null, null, 1);
	menu.addItem("id1997SummerSub", "id1997Sub11", 3, "Angels Baseball Game", "August - 3 images", "../1997/id1997Sub11.htm", null, null, 1);
	menu.addItem("id1997SummerSub", "id1997Sub12", 3, "Luxford Cousins Visit", "August - 8 images", "../1997/id1997Sub12.htm", null, null, 1);


///////////////////

	mstyle = new MenuStyle();
	mstyle.idName = "id1997SpringSub";
	mstyle.idStyle = "vertical";
	mstyle.position = "absolute";
	mstyle.bVisible = false;
	mstyle.bLeftAligned = 0;
	mstyle.bgColor = "#cc6600";
	mstyle.mainMenuWidth = "350";
	mstyle.width = "350";
	mstyle.menuBorder=0;
	mstyle.level=3;

	mstyle.holder="";

	menu.newMenu(mstyle);
	menu.addItem("id1997SpringSub", "id1997Sub2", 3, "Camping in Cleveland National Forest", "March - 17 images", "../1997/id1997Sub2.htm", null, null, 1);


///////////////////

	mstyle = new MenuStyle();
	mstyle.idName = "id1997WinterSub";
	mstyle.idStyle = "vertical";
	mstyle.position = "absolute";
	mstyle.bVisible = false;
	mstyle.bLeftAligned = 0;
	mstyle.bgColor = "#cc6600";
	mstyle.mainMenuWidth = "350";
	mstyle.width = "350";
	mstyle.menuBorder=0;
	mstyle.level=3;

	mstyle.holder="";

	menu.newMenu(mstyle);
	menu.addItem("id1997WinterSub", "id1997Sub1", 3, "New York, NY", "January - 24 images", "../1997/id1997Sub1.htm", null, null, 1);

/////////////////// id1996WinterSub

	mstyle.idName = "id1996WinterSub";

	menu.newMenu(mstyle);
	menu.addItem("id1996WinterSub", "id1996Sub1", 3, "Hannah's School Holiday Party", "December - 9 images", "../1996/id1996Sub1.htm", null, null, 1);
	menu.addItem("id1996WinterSub", "id1996Sub2", 3, "Grandma and Grandpa's Christmas Visit", "December - 15 images", "../1996/id1996Sub2.htm", null, null, 1);
	menu.addItem("id1996WinterSub", "id1996Sub3", 3, "POS2000 Christmas Party", "December - 3 images", "../1996/id1996Sub3.htm", null, null, 1);

/////////////////// idWorldSub
	mstyle = new MenuStyle();
	mstyle.idName = "idWorldSub";
	mstyle.idStyle = "vertical";
	mstyle.position = "absolute";
	mstyle.bVisible = false;
	mstyle.bLeftAligned = 0;
	mstyle.bgColor = "#cc6600";
	mstyle.mainMenuWidth = "200";
	mstyle.width = "200";
	mstyle.menuBorder=0;
	mstyle.level=2;

	mstyle.holder="";

	menu.newMenu(mstyle);
	menu.addItem("idWorldSub", "idWorldSub1", 2, "World Travel Home", "World Travel Home", "../World/idWorldSub1.htm", null, null, 1);
	menu.addItem("idWorldSub", "idWorldSub12", 2, "Bahamas", "Bahamas", "../World/idWorldSub12.htm", null, null, 1);
	menu.addItem("idWorldSub", "idWorldSub2", 2, "China", "China", "../World/idWorldSub2.htm", null, null, 1);
	menu.addItem("idWorldSub", "idWorldSub3", 2, "England", "England", "../World/idWorldSub3.htm", null, null, 1);
	menu.addItem("idWorldSub", "idWorldSub4", 2, "France", "France", "../World/idWorldSub4.htm", null, null, 1);
	menu.addItem("idWorldSub", "idWorldSub5", 2, "Germany", "Germany", "../World/idWorldSub5.htm", null, null, 1);
	menu.addItem("idWorldSub", "idWorldSub6", 2, "Italy", "Italy", "../World/idWorldSub6.htm", null, null, 1);
	menu.addItem("idWorldSub", "idWorldSub7", 2, "Japan", "Japan", "../World/idWorldSub7.htm", null, null, 1);
	menu.addItem("idWorldSub", "idWorldSub8", 2, "The Netherlands", "The Netherlands", "../World/idWorldSub8.htm", null, null, 1);
	menu.addItem("idWorldSub", "idWorldSub10", 2, "Poland", "Poland", "../World/idWorldSub10.htm", null, null, 1);
	menu.addItem("idWorldSub", "idWorldSub9", 2, "Taiwan", "Taiwan", "../World/idWorldSub9.htm", null, null, 1);
	menu.addItem("idWorldSub", "idWorldSub13", 2, "U.S. Virgin Islands", "U.S. Virgin Islands", "../World/idWorldSub13.htm", null, null, 1);
	menu.addItem("idWorldSub", "idWorldSub11", 2, "Wales", "Wales", "../World/idWorldSub11.htm", null, null, 1);


/////////////////// idcontactSub

	mstyle.idName = "idcontactSub";

	menu.newMenu(mstyle);
	menu.addItem("idcontactSub", "idcontactSub1", 2, "Eric Jones", "Eric's email address", "mailto:eric@ejones.com", null, null, 1);
	menu.addItem("idcontactSub", "idcontactSub2", 2, "Jennifer Jones", "Jenny's email address", "mailto:jennifer@ejones.com", null, null, 1);

	showMenu();
}

