meal1 = {name="Homestyle Bakes", type="boxed,chicken", side1="", difficulty=2, maxFrequency=2, spent=0, exception=""}; meal2 = {name="Mrs. Fields", type="fish", side1="Rice,Egg noodles,Pasta", difficulty=2, maxFrequency=3, spent=0, exception=""}; meal3 = {name="Tilapia", type="fish", side1="Rice,Egg noodles,Pasta,Cornbread", difficulty=3, maxFrequency=3, spent=0, exception=""}; meal4 = {name="Meatloaf", type="beef", side1="Garlic bread,Biscuits,Rice,Homemade bread", difficulty=3, maxFrequency=3, spent=0, exception=""}; meal5 = {name="Baked Chicken", type="chicken", side1="Biscuits,Egg noodles,Cornbread,Baked potatoes,Mashed potatoes,Roasted potatoes", difficulty=4, maxFrequency=2, spent=0, exception=""}; meal6 = {name="Tuna Melts", type="fish", side1="", difficulty=3, maxFrequency=1, spent=0, exception=""}; meal7 = {name="Cheeseburgers", type="beef", side1="", difficulty=1, maxFrequency=1, spent=0, exception=""}; meal8 = {name="Spaghetti", type="pasta", side1="Garlic bread,Biscuits,Homemade bread", difficulty=2, maxFrequency=2, spent=0, exception=""}; meal9 = {name="Tacos", type="beef", side1="", difficulty=1, maxFrequency=3, spent=0, exception=""}; meal10 = {name="Pork Chops", type="pork", side1="Cornbread,Biscuits,Homemade bread,Rice,Egg noodles,Biscuits,Baked potatoes,Roasted potatoes,Butter-Garlic potatoes,Mashed potatoes,Canned potatoes,Mac & cheese,Baked mac & cheese", difficulty=3, maxFrequency=3, spent=0, exception=""}; meal11 = {name="Ham", type="ham", side1="Cornbread,Biscuits,Homemade bread,Rice,Egg noodles,Mac & cheese,Baked mac & cheese", difficulty=2, maxFrequency=2, spent=0, exception=""}; meal12 = {name="Hamburger Helper", type="beef,boxed", side1="Cornbread,Biscuits,Homemade bread,Rice,Egg noodles,Garlic bread", difficulty=2, maxFrequency=2, spent=0, exception=""}; meal13 = {name="Tuna Helper", type="boxed,fish,pasta", side1="Biscuits,Homemade bread,", difficulty=2, maxFrequency=2, spent=0, exception=""}; meal14 = {name="Frozen Pizza", type="junkfood", side1="", difficulty=1, maxFrequency=2, spent=0, exception=""}; meal15 = {name="Baked Ziti", type="pasta", side1="Cornbread,Biscuits,Homemade bread", difficulty=4, maxFrequency=1, spent=0, exception=""}; meal16 = {name="Steak", type="beef", side1="Baked potatoes,Roasted potatoes,Butter-Garlic potatoes,Mashed potatoes,Canned potatoes,Cornbread,Biscuits", difficulty=3, maxFrequency=2, spent=0, exception=""}; meal17 = {name="Pork Roast", type="pork", side1="Rice,Cornbread,Biscuits,Homemade bread,Egg noodles,Mashed potatoes,Roasted potatoes,Canned potatoes,Butter-Garlic potatoes", difficulty=3, maxFrequency=1, spent=0, exception=""}; meal18 = {name="BBQ Chicken", type="chicken", side1="Mashed potatoes,Biscuits,", difficulty=3, maxFrequency=2, spent=0, exception=""}; meal19 = {name="Chicken Alfredo", type="chicken,pasta", side1="Biscuits,Homemade bread", difficulty=3, maxFrequency=1, spent=0, exception=""}; meal20 = {name="Venison Steak", type="deer", side1="Cornbread,Homemade bread,Mashed potatoes,Roasted potatoes,Egg noodles", difficulty=2, maxFrequency=1, spent=0, exception=""}; /* add all of your meal structs to this array */ session.meals = [meal1, meal2, meal3, meal4, meal5, meal6, meal7, meal8, meal9, meal10, meal11, meal12, meal13, meal14, meal15, meal16, meal17, meal18, meal19, meal20]; /* list your fruits and veggies */ fruit_n_veggie_list = "Grapes,Apples,Oranges,Applesauce,Peas,Greenbeans,Carrots,Broccoli,Corn"; /* list exceptions here. These are dates when no meal is required. The "exception" attribute will be displayed on the given day. the "day" attribute specifies the day of the month (integer) that the exception applies to */ exception1 = {exception="Graduation Party", date=2}; exception2 = {exception="Birthday Party
Friends coming up", date=9}; exception3 = {exception="Camping", date=22}; exception4 = {exception="Camping", date=23}; /* add all of your exceptions to this array */ exceptions = [exception1, exception2, exception3, exception4]; minMealProximity = 5; //closest we'll allow meals of a shared type to reside (integer number of days BETWEEN) minSideProximity = 2; //closest we'll allow side dishes to be repeated (integer number of days BETWEEN) menuMonth = 6; menuYear = 2007; /* name the CSS file that you use to style the results - default: "default.css" */ cssFile = "default.css";