Lighten up your holidays with these easy, healthy, and supremely satisfying dishes. From appetizers and side dishes to entrees and desserts, these recipes feature fresh, nutritious ingredients artfully combined to please your family and friends during this festive season.
To Download the cookbook, please fill in the form below.
$(document).ready(function(){
//populate profile fields
$(“#Zip”).attr(“value”, “”);
$(“#Email”).attr(“value”, “”);
//create form validation
$(“#submgmt”).validate({
rules: {
Zip: “required”,
Email: {required: true, email: true},
}
});
});
//takes in a string value and populates it for a select list if an option with value exists
$.fn.set_select = function(val) {
$(this).find(“option”).each(function () {
if($(this).attr(“value”) == val && $(this).attr(“value”) != “”) {
$(this).attr(“selected”, true);
}
});
};
.labeled
{
float: left;
width: 150px;
}
.selection
{
float: left;
}
.formRow
{
width: 95%;
float: left;
margin-bottom:7px;
}