// items structure
// each item is the array of one or more properties:
// [text, link, settings, subitems ...]
// use the builder to export errors free structure if you experience problems with the syntax

var MENU_ITEMS = [
	['Home', 'index.html'],


	['Email Me', 'mailto:cathygrrl@hotmail.com'],


	['Thanksgiving & Christmas', null, null,
		['Turkey', null, null,
			['Brining', 'ct-turkey-brining.html', null,],
			['Coating and Roasting', 'ct-turkey-butter.html', null,],
			['Gravy', 'ct-turkey-gravy.html', null,]
		],
		['Carole\'s Corn Casserole', 'sides-corncasserole.html', null,],
		['Cider-Glazed Carrots', 'ciderglazedcarrots.html', null,],
		['Green Beans with Caramelized Onions', 'greenbeanswithonions.html', null,],
		['Kentucky Bourbon Sweet Potatoes', 'bourbonsweetpotatoes.html', null,],
		['Spinach Madeleine', 'spinachmadeleine.html', null,]
	],


	['Soups, Salads, & Appetizers', null, null,
		['Joan\'s Broccoli Madness', 'salads-joans.html', null,]
	],
	

	['Breads', null, null,
		['Banana Bread', 'other-bananabread.html', null,]
	],


	['Marinades & Rubs', null, null,
		['Jamaican Jerk Rub', 'jerkrub.html', null,],
		['Rib-eye Marinade', 'marinade-ribeye.html', null,],
		['Spice Rub for Pork Roast', 'porkspicerub.html', null,],
		['Steak Rub', 'steakrub.html', null,]
	],

	['Meats', null, null,
		['Brining Chicken', 'briningchicken.html', null],
		['Broiling a Steak', 'steakbroil.html', null],
		['Bleu Cheese Stuffed London Broil', 'stuffedlondonbroil.html', null]
	],


	['Casseroles', null, null,
		['Main Dish', null, null,
			['Elegant Chicken', 'elegantchicken.html', null,],
			['Marzetti', 'mdcass-marzetti.html', null,],
			['Mexican Strata', 'mdcass-mexistrat.html', null,]
		],
		['Side Dish', null, null,
			['Carole\'s Corn Casserole', 'sides-corncasserole.html', null,],
			['Hash Brown Casserole', 'bfast-hbcasserole.html', null,],
			['Spinach Madeleine', 'spinachmadeleine.html', null,],
			['Yummy Corn Hash', 'sides-cornhash.html', null,]
		],
	],


	['Breakfast Foods', null, null,
		['Breakfast Casserole #1', 'bfast-casserole1.html', null,],
		['Hash Brown Casserole', 'bfast-hbcasserole.html', null,],
		['Sausage & Hash Brown Breakfast Casserole', 'bfast-casserole2.html', null,]
	],

	['Party Foods', null, null,
		['Hot Sausage Dip', 'hotsausagedip.html', null,],
		['Pecan Bacon Cheese Spread', 'pecanbaconcheesespread.html', null,],
		['Ranch Dip', 'ranch.html', null,],
	],


	['Drinks & Snacks', null, null,
		['Jell-O Shots', 'other-jelloshots.html', null,],
		['Party Sangria', 'partysangria.html', null,]
	]


];

