/*jslint nomen:false, debug:true, evil:true, vars:false, browser:true, forin:true, undef:false, white:false */
/**
 * Includes a Form with javascript
 * @param {Object} formId
 * @param {Object} initialHeight
 * @param {Object} iframeCode
 */
function FrameBuilder (formId, appendTo, initialHeight, iframeCode){
    this.formId = formId;
    this.initialHeight = initialHeight;
    this.iframeCode = iframeCode;
    this.frame = null;
    this.timeInterval= 200;
    this.appendTo = appendTo || false;
    
    // initialize function for object
    this.init = function(){
        this.createFrame();
        this.addFrameContent(this.iframeCode);
    };
    
    // Create the frame
    this.createFrame = function(){
        var htmlCode = "<"+"iframe src=\"\" allowtransparency=\"true\" frameborder=\"0\" name=\""+this.formId+"\" id=\""+this.formId+"\" style=\"width:100%; height:"+this.initialHeight+"px; border:none;\" scrolling=\"no\"></if"+"rame>";
        if(this.appendTo === false){
            document.write(htmlCode);
        }else{
            var tmp = document.createElement('div');
            tmp.innerHTML = htmlCode;
            var a = this.appendTo;
            document.getElementById(a).appendChild(tmp.firstChild);            
        }
        // also get the frame for future use.
        this.frame = document.getElementById(this.formId);
        // set the time on the on load event of the frame
        this.addEvent(this.frame, 'load', this.bindMethod(this.setTimer, this));
    };
    
    // add event function for different browsers
    this.addEvent = function( obj, type, fn ) {
        if ( obj.attachEvent ) {
            obj["e"+type+fn] = fn;
            obj[type+fn] = function() { obj["e"+type+fn]( window.event ); };
            obj.attachEvent( "on"+type, obj[type+fn] );
        }
        else{
            obj.addEventListener( type, fn, false );   
        }
    };
    
    this.addFrameContent = function (string){
        string = string.replace(new RegExp('src\\=\\"[^"]*captcha.php\"><\/scr'+'ipt>', 'gim'), 'src="http://api.recaptcha.net/js/recaptcha_ajax.js"></scr'+'ipt><'+'div id="recaptcha_div"><'+'/div>'+
                '<'+'style>#recaptcha_logo{ display:none;} #recaptcha_tagline{display:none;} #recaptcha_table{border:none !important;} .recaptchatable .recaptcha_image_cell, #recaptcha_table{ background-color:transparent !important; } <'+'/style>'+
                '<'+'script defer="defer"> window.onload = function(){ Recaptcha.create("6Ld9UAgAAAAAAMon8zjt30tEZiGQZ4IIuWXLt1ky", "recaptcha_div", {theme: "clean",tabindex: 0,callback: function (){'+
                'if (document.getElementById("uword")) { document.getElementById("uword").parentNode.removeChild(document.getElementById("uword")); } if (window["validate"] !== undefined) { if (document.getElementById("recaptcha_response_field")){ document.getElementById("recaptcha_response_field").onblur = function(){ validate(document.getElementById("recaptcha_response_field"), "Required"); } } } if (document.getElementById("recaptcha_response_field")){ document.getElementsByName("recaptcha_challenge_field")[0].setAttribute("name", "anum"); } if (document.getElementById("recaptcha_response_field")){ document.getElementsByName("recaptcha_response_field")[0].setAttribute("name", "qCap"); }}})'+
                ' }<'+'/script>');
        string = string.replace(/(type="text\/javascript">)\s+(validate\(\"[^"]*"\);)/, '$1 jTime = setInterval(function(){if("validate" in window){$2clearTimeout(jTime);}}, 1000);');
        var frameDocument = (this.frame.contentWindow) ? this.frame.contentWindow : (this.frame.contentDocument.document) ? this.frame.contentDocument.document : this.frame.contentDocument;
        frameDocument.document.open();
        frameDocument.document.write(string);
        setTimeout( function(){
            frameDocument.document.close();
            try{
                if('JotFormFrameLoaded' in window){
                    JotFormFrameLoaded();
                }
            }catch(e){}
        },200);
    };
    
    this.setTimer = function(){
        var self = this;
        this.interval = setTimeout(function(){self.changeHeight();},this.timeInterval);
    };
    
    this.changeHeight = function (){
        var actualHeight = this.getBodyHeight();
        var currentHeight = this.getViewPortHeight();
        if(actualHeight === undefined){
            this.frame.style.height = "100%";
            if(!this.frame.style.minHeight){
                this.frame.style.minHeight = "300px";
            }
        }else if  (Math.abs(actualHeight - currentHeight) > 18){
            this.frame.style.height = (actualHeight)+"px";
        }
        this.setTimer();
    };
    
    this.bindMethod = function(method, scope) {
        return function() {
            method.apply(scope,arguments);
        };
    };
    
    this.getBodyHeight = function (){
        var height;
        var scrollHeight;
        var offsetHeight;
        try{  // Prevent IE from throw errors
            if (this.frame.contentWindow.document.height){
                
                height = this.frame.contentWindow.document.height;
                //Emre: to prevent "iframe height"  problem (61059)
                if (this.frame.contentWindow.document.body.scrollHeight){
                    height = scrollHeight = this.frame.contentWindow.document.body.scrollHeight;
                }
                
                if (this.frame.contentWindow.document.body.offsetHeight){
                    height = offsetHeight = this.frame.contentWindow.document.body.offsetHeight;
                }
                
            } else if (this.frame.contentWindow.document.body){
                
                if (this.frame.contentWindow.document.body.scrollHeight){
                    height = scrollHeight = this.frame.contentWindow.document.body.scrollHeight;
                }
                
                if (this.frame.contentWindow.document.body.offsetHeight){
                    height = offsetHeight = this.frame.contentWindow.document.body.offsetHeight;
                }
                
                if (scrollHeight && offsetHeight){
                    height = Math.max(scrollHeight, offsetHeight);
                }
            }            
        }catch(e){ }
        return height;
    };
    
    this.getViewPortHeight = function(){
        var height = 0;
        try{ // Prevent IE from throw errors
            if (this.frame.contentWindow.window.innerHeight)
            {
                height = this.frame.contentWindow.window.innerHeight - 18;
            }
            else if ((this.frame.contentWindow.document.documentElement) &&
                     (this.frame.contentWindow.document.documentElement.clientHeight))
            {
                height = this.frame.contentWindow.document.documentElement.clientHeight;
            }
            else if ((this.frame.contentWindow.document.body) &&
                     (this.frame.contentWindow.document.body.clientHeight))
            {
                height = this.frame.contentWindow.document.body.clientHeight;
            }            
        }catch(e){ }
        return height;
    };
    
    this.init();
}
FrameBuilder.get = [];
var i93162152021 = new FrameBuilder("93162152021", false, "", "<!DOCTYPE HTML PUBLIC \"-\/\/W3C\/\/DTD HTML 4.01\/\/EN\" \"http:\/\/www.w3.org\/TR\/html4\/strict.dtd\">\n<html><head>\n<meta http-equiv=\"Content-Type\" content=\"text\/html; charset=utf-8\" \/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0\" \/>\n<meta name=\"HandheldFriendly\" content=\"true\" \/>\n<title>Form<\/title>\n<link href=\"http:\/\/max.jotfor.ms\/min\/g=formCss?3.0.2435\" rel=\"stylesheet\" type=\"text\/css\" \/>\n<style type=\"text\/css\">\n    .form-label{\n        width:150px !important;\n    }\n    .form-label-left{\n        width:150px !important;\n    }\n    .form-line{\n        padding:5px;\n    }\n    .form-label-right{\n        width:150px !important;\n    }\n    body, html{\n        margin:0;\n        padding:0;\n        background:white;\n    }\n\n    .form-all{\n        margin:0px auto;\n        padding-top:0px;\n        width:560px;\n        background:white;\n        color:#333333 !important;\n        font-family:Arial;\n        font-size:14px;\n    }\n<\/style>\n\n<script src=\"http:\/\/max.jotfor.ms\/min\/g=jotform?3.0.2435\" type=\"text\/javascript\"><\/script>\n<script type=\"text\/javascript\">\n var jsTime = setInterval(function(){try{\n   JotForm.jsForm = true;\n\n   JotForm.init(function(){\n      $('input_118').hint('ex: myname@example.com');\n      JotForm.setCalendar(\"25\");\n      JotForm.description('input_25', 'Delivery Date:');\n      JotForm.description('input_35', 'Breakfast Offerings:');\n      JotForm.description('input_38', 'Beverages:');\n      JotForm.description('input_39', 'Extra Sides:');\n   });\n\n   clearInterval(jsTime);\n }catch(e){}}, 1000);\n<\/script>\n<\/head>\n<body>\n<form class=\"jotform-form\" action=\"http:\/\/submit.jotform.com\/submit.php\" method=\"post\" name=\"form_93162152021\" id=\"93162152021\" accept-charset=\"utf-8\">\n  <input type=\"hidden\" name=\"formID\" value=\"93162152021\" \/>\n  <div class=\"form-all\">\n    <ul class=\"form-section\">\n      <li id=\"cid_61\" class=\"form-input-wide\">\n        <div class=\"form-header-group\">\n          <h3 id=\"header_61\" class=\"form-header\">\n            Whenever possible, please place orders by 4 p.m. or call to confirm reception of order. Please give 48 hour notice for all On-Site Grill Orders.\n          <\/h3>\n        <\/div>\n      <\/li>\n    <\/ul>\n    <ul class=\"form-section\" id=\"section_54\">\n      <li id=\"cid_54\" class=\"form-input-wide\">\n        <div class=\"form-collapse-table\" id=\"collapse_54\"><span class=\"form-collapse-mid\" id=\"collapse-text_54\">1. Catering Representative Information<\/span><span class=\"form-collapse-right form-collapse-right-show\">&nbsp;<\/span>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_119\">\n        <label class=\"form-label-right\" id=\"label_119\" for=\"input_119\">\n          Full Name:<span class=\"form-required\">*<\/span>\n        <\/label>\n        <div id=\"cid_119\" class=\"form-input\"><span class=\"form-sub-label-container\"><input class=\"form-textbox validate[required]\" type=\"text\" size=\"10\" name=\"q119_fullName119[first]\" id=\"first_119\" \/>\n            <label class=\"form-sub-label\" for=\"first_119\" id=\"sublabel_first\"> First Name <\/label><\/span><span class=\"form-sub-label-container\"><input class=\"form-textbox validate[required]\" type=\"text\" size=\"15\" name=\"q119_fullName119[last]\" id=\"last_119\" \/>\n            <label class=\"form-sub-label\" for=\"last_119\" id=\"sublabel_last\"> Last Name <\/label><\/span>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_118\">\n        <label class=\"form-label-right\" id=\"label_118\" for=\"input_118\">\n          E-mail:<span class=\"form-required\">*<\/span>\n        <\/label>\n        <div id=\"cid_118\" class=\"form-input\">\n          <input type=\"email\" class=\"form-textbox validate[required, Email]\" id=\"input_118\" name=\"q118_email118\" size=\"30\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_120\">\n        <label class=\"form-label-right\" id=\"label_120\" for=\"input_120\">\n          Phone Number:<span class=\"form-required\">*<\/span>\n        <\/label>\n        <div id=\"cid_120\" class=\"form-input\"><span class=\"form-sub-label-container\"><input class=\"form-textbox validate[required]\" type=\"tel\" name=\"q120_phoneNumber120[area]\" id=\"input_120_area\" size=\"3\">\n            -\n            <label class=\"form-sub-label\" for=\"input_120_area\" id=\"sublabel_area\"> Area Code <\/label><\/span><span class=\"form-sub-label-container\"><input class=\"form-textbox validate[required]\" type=\"tel\" name=\"q120_phoneNumber120[phone]\" id=\"input_120_phone\" size=\"8\">\n            <label class=\"form-sub-label\" for=\"input_120_phone\" id=\"sublabel_phone\"> Phone Number <\/label><\/span>\n        <\/div>\n      <\/li>\n    <\/ul>\n    <ul class=\"form-section-closed\" style=\"height: 60px;clear:both;\" id=\"section_53\">\n      <li id=\"cid_53\" class=\"form-input-wide\">\n        <div class=\"form-collapse-table\" id=\"collapse_53\"><span class=\"form-collapse-mid\" id=\"collapse-text_53\">2. Delivery Information<\/span><span class=\"form-collapse-right form-collapse-right-hide\">&nbsp;<\/span>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_121\">\n        <label class=\"form-label-right\" id=\"label_121\" for=\"input_121\"> Client\/Doctor's Name: <\/label>\n        <div id=\"cid_121\" class=\"form-input\"><span class=\"form-sub-label-container\"><input class=\"form-textbox\" type=\"text\" size=\"10\" name=\"q121_clientdoctorsName[first]\" id=\"first_121\" \/>\n            <label class=\"form-sub-label\" for=\"first_121\" id=\"sublabel_first\"> First Name <\/label><\/span><span class=\"form-sub-label-container\"><input class=\"form-textbox\" type=\"text\" size=\"15\" name=\"q121_clientdoctorsName[last]\" id=\"last_121\" \/>\n            <label class=\"form-sub-label\" for=\"last_121\" id=\"sublabel_last\"> Last Name <\/label><\/span>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_122\">\n        <label class=\"form-label-right\" id=\"label_122\" for=\"input_122\"> Phone Number: <\/label>\n        <div id=\"cid_122\" class=\"form-input\"><span class=\"form-sub-label-container\"><input class=\"form-textbox\" type=\"tel\" name=\"q122_phoneNumber[area]\" id=\"input_122_area\" size=\"3\">\n            -\n            <label class=\"form-sub-label\" for=\"input_122_area\" id=\"sublabel_area\"> Area Code <\/label><\/span><span class=\"form-sub-label-container\"><input class=\"form-textbox\" type=\"tel\" name=\"q122_phoneNumber[phone]\" id=\"input_122_phone\" size=\"8\">\n            <label class=\"form-sub-label\" for=\"input_122_phone\" id=\"sublabel_phone\"> Phone Number <\/label><\/span>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_126\">\n        <label class=\"form-label-right\" id=\"label_126\" for=\"input_126\"> Address: <\/label>\n        <div id=\"cid_126\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox\" id=\"input_126\" name=\"q126_address\" size=\"20\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_127\">\n        <label class=\"form-label-right\" id=\"label_127\" for=\"input_127\"> City: <\/label>\n        <div id=\"cid_127\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox\" id=\"input_127\" name=\"q127_city127\" size=\"20\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_130\">\n        <label class=\"form-label-right\" id=\"label_130\" for=\"input_130\"> State: <\/label>\n        <div id=\"cid_130\" class=\"form-input\">\n          <div class=\"form-single-column\"><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_130_0\" name=\"q130_state[]\" checked=\"checked\" value=\"Michigan\" \/>\n              <label for=\"input_130_0\"> Michigan <\/label><\/span><span class=\"clearfix\"><\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_128\">\n        <label class=\"form-label-right\" id=\"label_128\" for=\"input_128\"> Zip: <\/label>\n        <div id=\"cid_128\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox\" id=\"input_128\" name=\"q128_zip\" size=\"20\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_124\">\n        <label class=\"form-label-right\" id=\"label_124\" for=\"input_124\"> Contact Person <\/label>\n        <div id=\"cid_124\" class=\"form-input\"><span class=\"form-sub-label-container\"><input class=\"form-textbox\" type=\"text\" size=\"10\" name=\"q124_contactPerson124[first]\" id=\"first_124\" \/>\n            <label class=\"form-sub-label\" for=\"first_124\" id=\"sublabel_first\"> First Name <\/label><\/span><span class=\"form-sub-label-container\"><input class=\"form-textbox\" type=\"text\" size=\"15\" name=\"q124_contactPerson124[last]\" id=\"last_124\" \/>\n            <label class=\"form-sub-label\" for=\"last_124\" id=\"sublabel_last\"> Last Name <\/label><\/span>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_25\">\n        <label class=\"form-label-right\" id=\"label_25\" for=\"input_25\"> Delivery Date and Time: <\/label>\n        <div id=\"cid_25\" class=\"form-input\"><span class=\"form-sub-label-container\"><input class=\"form-textbox\" id=\"month_25\" name=\"q25_deliveryDate25[month]\" type=\"text\" size=\"2\" maxlength=\"2\" value=\"02\" \/><span class=\"date-separate\">&nbsp;-<\/span>\n            <label class=\"form-sub-label\" for=\"month_25\" id=\"sublabel_month\"> Month <\/label><\/span><span class=\"form-sub-label-container\"><input class=\"form-textbox\" id=\"day_25\" name=\"q25_deliveryDate25[day]\" type=\"text\" size=\"2\" maxlength=\"2\" value=\"10\" \/><span class=\"date-separate\">&nbsp;-<\/span>\n            <label class=\"form-sub-label\" for=\"day_25\" id=\"sublabel_day\"> Day <\/label><\/span><span class=\"form-sub-label-container\"><input class=\"form-textbox\" id=\"year_25\" name=\"q25_deliveryDate25[year]\" type=\"text\" size=\"4\" maxlength=\"4\" value=\"2012\" \/>\n            <label class=\"form-sub-label\" for=\"year_25\" id=\"sublabel_year\"> Year <\/label><\/span><span class=\"form-sub-label-container\"><div id=\"at_25\">\n              at\n            <\/div>\n            <label class=\"form-sub-label\" for=\"at_25\"> &nbsp;&nbsp;&nbsp; <\/label><\/span><span class=\"form-sub-label-container\"><input class=\"form-textbox\" id=\"hour_25\" name=\"q25_deliveryDate25[hour]\" type=\"text\" size=\"2\" maxlength=\"2\" value=\"01\" \/><span class=\"date-separate\">&nbsp;\/<\/span>\n            <label class=\"form-sub-label\" for=\"hour_25\" id=\"sublabel_hour\"> Hour <\/label><\/span><span class=\"form-sub-label-container\"><input class=\"form-textbox\" id=\"min_25\" name=\"q25_deliveryDate25[min]\" type=\"text\" size=\"2\" maxlength=\"2\" value=\"52\" \/>\n            <label class=\"form-sub-label\" for=\"min_25\" id=\"sublabel_minutes\"> Minutes <\/label><\/span><span class=\"form-sub-label-container\"><select class=\"form-dropdown\" id=\"ampm_25\" name=\"q25_deliveryDate25[ampm]\">\n              <option value=\"AM\"> AM <\/option>\n              <option value=\"PM\"> PM <\/option>\n            <\/select>\n            <label class=\"form-sub-label\" for=\"ampm_25\"> &nbsp;&nbsp;&nbsp; <\/label><\/span><span class=\"form-sub-label-container\"><img alt=\"Pick a Date\" id=\"input_25_pick\" src=\"http:\/\/www.jotform.com\/images\/calendar.png\" align=\"absmiddle\" \/>\n            <label class=\"form-sub-label\" for=\"input_25_pick\"> &nbsp;&nbsp;&nbsp; <\/label><\/span>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_28\">\n        <label class=\"form-label-right\" id=\"label_28\" for=\"input_28\"> Number of Guests (minimum of 10 people): <\/label>\n        <div id=\"cid_28\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox validate[Numeric]\" id=\"input_28\" name=\"q28_numberOf\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n    <\/ul>\n    <ul class=\"form-section-closed\" style=\"height: 60px;clear:both;\" id=\"section_52\">\n      <li id=\"cid_52\" class=\"form-input-wide\">\n        <div class=\"form-collapse-table\" id=\"collapse_52\"><span class=\"form-collapse-mid\" id=\"collapse-text_52\">3. Breakfast Selections<\/span><span class=\"form-collapse-right form-collapse-right-hide\">&nbsp;<\/span>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_81\">\n        <label class=\"form-label-right\" id=\"label_81\" for=\"input_81\"> Southern Flavor: <\/label>\n        <div id=\"cid_81\" class=\"form-input\">\n          <div class=\"form-single-column\"><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_81_0\" name=\"q81_southernFlavor[]\" value=\"Southern Flavor\" \/>\n              <label for=\"input_81_0\"> Southern Flavor <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_81_1\" name=\"q81_southernFlavor[]\" value=\"Add Cheese to Eggs .49\u00a2 per person\" \/>\n              <label for=\"input_81_1\"> Add Cheese to Eggs .49\u00a2 per person <\/label><\/span><span class=\"clearfix\"><\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_82\">\n        <label class=\"form-label-right\" id=\"label_82\" for=\"input_82\"> Continental Breakfast: <\/label>\n        <div id=\"cid_82\" class=\"form-input\">\n          <div class=\"form-single-column\"><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_82_0\" name=\"q82_continentalBreakfast[]\" value=\"Continental Breakfast\" \/>\n              <label for=\"input_82_0\"> Continental Breakfast <\/label><\/span><span class=\"clearfix\"><\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_84\">\n        <label class=\"form-label-right\" id=\"label_84\" for=\"input_84\"> Omelettes <\/label>\n        <div id=\"cid_84\" class=\"form-input\">\n          <div class=\"form-single-column\"><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_84_0\" name=\"q84_omelettes[]\" value=\"Cheese Omelettes\" \/>\n              <label for=\"input_84_0\"> Cheese Omelettes <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_84_1\" name=\"q84_omelettes[]\" value=\"Veggie Omelettes\" \/>\n              <label for=\"input_84_1\"> Veggie Omelettes <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_84_2\" name=\"q84_omelettes[]\" value=\"Western Omelettes\" \/>\n              <label for=\"input_84_2\"> Western Omelettes <\/label><\/span><span class=\"clearfix\"><\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_35\">\n        <label class=\"form-label-right\" id=\"label_35\" for=\"input_35\"> Breakfast Beverages: <\/label>\n        <div id=\"cid_35\" class=\"form-input\">\n          <div class=\"form-single-column\"><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_35_0\" name=\"q35_breakfastBeverages[]\" value=\"Apple Juice\" \/>\n              <label for=\"input_35_0\"> Apple Juice <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_35_1\" name=\"q35_breakfastBeverages[]\" value=\"Orange Juice\" \/>\n              <label for=\"input_35_1\"> Orange Juice <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_35_2\" name=\"q35_breakfastBeverages[]\" value=\"We brew Fresh Starbucks\u00ae Coffee\" \/>\n              <label for=\"input_35_2\"> We brew Fresh Starbucks\u00ae Coffee <\/label><\/span><span class=\"clearfix\"><\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_90\">\n        <label class=\"form-label-right\" id=\"label_90\" for=\"input_90\"> Accompaniments: <\/label>\n        <div id=\"cid_90\" class=\"form-input\">\n          <div class=\"form-single-column\"><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_90_0\" name=\"q90_accompaniments[]\" value=\"Extra Orange Juice \u2013 1 gallon for $6.99\" \/>\n              <label for=\"input_90_0\"> Extra Orange Juice \u2013 1 gallon for $6.99 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_90_1\" name=\"q90_accompaniments[]\" value=\"Extra Apple Juice \u2013 48oz for $5.99\" \/>\n              <label for=\"input_90_1\"> Extra Apple Juice \u2013 48oz for $5.99 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_90_2\" name=\"q90_accompaniments[]\" value=\"Bacon Biscuit Sandwiches\" \/>\n              <label for=\"input_90_2\"> Bacon Biscuit Sandwiches <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_90_3\" name=\"q90_accompaniments[]\" value=\"Sausage Buscuit Sandwiches\" \/>\n              <label for=\"input_90_3\"> Sausage Buscuit Sandwiches <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_90_4\" name=\"q90_accompaniments[]\" value=\"Ham and Cheese Biscuit Sandwiches\" \/>\n              <label for=\"input_90_4\"> Ham and Cheese Biscuit Sandwiches <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_90_5\" name=\"q90_accompaniments[]\" value=\"Baked Butter Biscuits\" \/>\n              <label for=\"input_90_5\"> Baked Butter Biscuits <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_90_6\" name=\"q90_accompaniments[]\" value=\"Red Skin Home Potatoes\" \/>\n              <label for=\"input_90_6\"> Red Skin Home Potatoes <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_90_7\" name=\"q90_accompaniments[]\" value=\"Fresh Fruit Salad\" \/>\n              <label for=\"input_90_7\"> Fresh Fruit Salad <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_90_8\" name=\"q90_accompaniments[]\" value=\"Assorted Pastries\" \/>\n              <label for=\"input_90_8\"> Assorted Pastries <\/label><\/span><span class=\"clearfix\"><\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n    <\/ul>\n    <ul class=\"form-section-closed\" style=\"height: 60px;clear:both;\" id=\"section_87\">\n      <li id=\"cid_87\" class=\"form-input-wide\">\n        <div class=\"form-collapse-table\" id=\"collapse_87\"><span class=\"form-collapse-mid\" id=\"collapse-text_87\">4. Cold Selections<\/span><span class=\"form-collapse-right form-collapse-right-hide\">&nbsp;<\/span>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_91\">\n        <label class=\"form-label-right\" id=\"label_91\" for=\"input_91\"> Sandwiches: <\/label>\n        <div id=\"cid_91\" class=\"form-input\">\n          <div class=\"form-single-column\"><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_91_0\" name=\"q91_sandwiches[]\" value=\"Mini Assorted Sandwiches (Turkey, Ham and Roast Beef)\" \/>\n              <label for=\"input_91_0\"> Mini Assorted Sandwiches (Turkey, Ham and Roast Beef) <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_91_1\" name=\"q91_sandwiches[]\" value=\"Assorted Sandwich Wraps (Turkey, Ham and Veggie)\" \/>\n              <label for=\"input_91_1\"> Assorted Sandwich Wraps (Turkey, Ham and Veggie) <\/label><\/span><span class=\"clearfix\"><\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n    <\/ul>\n    <ul class=\"form-section-closed\" style=\"height: 60px;clear:both;\" id=\"section_93\">\n      <li id=\"cid_93\" class=\"form-input-wide\">\n        <div class=\"form-collapse-table\" id=\"collapse_93\"><span class=\"form-collapse-mid\" id=\"collapse-text_93\">5. Hot Buffet Selections<\/span><span class=\"form-collapse-right form-collapse-right-hide\">&nbsp;<\/span>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_116\">\n        <label class=\"form-label-right\" id=\"label_116\" for=\"input_116\"> Memphis BBQ: <\/label>\n        <div id=\"cid_116\" class=\"form-input\">\n          <div class=\"form-single-column\"><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_116_0\" name=\"q116_memphisBbq[]\" value=\"Memphis BBQ\" \/>\n              <label for=\"input_116_0\"> Memphis BBQ <\/label><\/span><span class=\"clearfix\"><\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_94\">\n        <label class=\"form-label-right\" id=\"label_94\" for=\"input_94\"> Mexican Fajitas: <\/label>\n        <div id=\"cid_94\" class=\"form-input\">\n          <div class=\"form-single-column\"><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_94_0\" name=\"q94_mexicanFajitas[]\" value=\"Mexican Faijta Buffet\" \/>\n              <label for=\"input_94_0\"> Mexican Faijta Buffet <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_94_1\" name=\"q94_mexicanFajitas[]\" value=\"Add 12oz. cup of Guacamole for $4.99\" \/>\n              <label for=\"input_94_1\"> Add 12oz. cup of Guacamole for $4.99 <\/label><\/span><span class=\"clearfix\"><\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_95\">\n        <label class=\"form-label-right\" id=\"label_95\" for=\"input_95\"> Grilled Chicken and Wild Rice: <\/label>\n        <div id=\"cid_95\" class=\"form-input\">\n          <div class=\"form-single-column\"><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_95_0\" name=\"q95_grilledChicken[]\" value=\"Grilled Chicken and Wild Rice Buffet\" \/>\n              <label for=\"input_95_0\"> Grilled Chicken and Wild Rice Buffet <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_95_1\" name=\"q95_grilledChicken[]\" value=\"Add Hummus and Pita Wedges for $1.45 per person\" \/>\n              <label for=\"input_95_1\"> Add Hummus and Pita Wedges for $1.45 per person <\/label><\/span><span class=\"clearfix\"><\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_96\">\n        <label class=\"form-label-right\" id=\"label_96\" for=\"input_96\"> Italian Chicken Parmesan and Baked Mostaccioli: <\/label>\n        <div id=\"cid_96\" class=\"form-input\">\n          <div class=\"form-single-column\"><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_96_0\" name=\"q96_italianChicken[]\" value=\"Italian Chicken Parmesan and Baked Mostaccioli\" \/>\n              <label for=\"input_96_0\"> Italian Chicken Parmesan and Baked Mostaccioli <\/label><\/span><span class=\"clearfix\"><\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_97\">\n        <label class=\"form-label-right\" id=\"label_97\" for=\"input_97\"> Greek Gyro Bar: <\/label>\n        <div id=\"cid_97\" class=\"form-input\">\n          <div class=\"form-single-column\"><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_97_0\" name=\"q97_greekGyro[]\" value=\"Greek Gyro Bar Buffet\" \/>\n              <label for=\"input_97_0\"> Greek Gyro Bar Buffet <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_97_1\" name=\"q97_greekGyro[]\" value=\"Add Hummus and Pita Wedges for $1.45 per person\" \/>\n              <label for=\"input_97_1\"> Add Hummus and Pita Wedges for $1.45 per person <\/label><\/span><span class=\"clearfix\"><\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_98\">\n        <label class=\"form-label-right\" id=\"label_98\" for=\"input_98\"> Asian Stir-Fry and Salad: <\/label>\n        <div id=\"cid_98\" class=\"form-input\">\n          <div class=\"form-single-column\"><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_98_0\" name=\"q98_asianStirfry[]\" value=\"Asian Stir-Fry and Salad Buffet\" \/>\n              <label for=\"input_98_0\"> Asian Stir-Fry and Salad Buffet <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_98_1\" name=\"q98_asianStirfry[]\" value=\"Add Chinese Noodles for $1.70 per person\" \/>\n              <label for=\"input_98_1\"> Add Chinese Noodles for $1.70 per person <\/label><\/span><span class=\"clearfix\"><\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_99\">\n        <label class=\"form-label-right\" id=\"label_99\" for=\"input_99\"> Baked Potato Bar: <\/label>\n        <div id=\"cid_99\" class=\"form-input\">\n          <div class=\"form-single-column\"><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_99_0\" name=\"q99_bakedPotato[]\" value=\"Potato Bar Buffet w\/ base toppings (see menu)\" \/>\n              <label for=\"input_99_0\"> Potato Bar Buffet w\/ base toppings (see menu) <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_99_1\" name=\"q99_bakedPotato[]\" value=\"Hot Chili for .95\u00a2 per person\" \/>\n              <label for=\"input_99_1\"> Hot Chili for .95\u00a2 per person <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_99_2\" name=\"q99_bakedPotato[]\" value=\"Fresh broccoli for .95\u00a2 per person\" \/>\n              <label for=\"input_99_2\"> Fresh broccoli for .95\u00a2 per person <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_99_3\" name=\"q99_bakedPotato[]\" value=\"Hot Cheese for .95\u00a2 per person\" \/>\n              <label for=\"input_99_3\"> Hot Cheese for .95\u00a2 per person <\/label><\/span><span class=\"clearfix\"><\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_100\">\n        <label class=\"form-label-right\" id=\"label_100\" for=\"input_100\"> Caribbean Buffet: <\/label>\n        <div id=\"cid_100\" class=\"form-input\">\n          <div class=\"form-single-column\"><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_100_0\" name=\"q100_caribbeanBuffet[]\" value=\"Caribbean Buffet\" \/>\n              <label for=\"input_100_0\"> Caribbean Buffet <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_100_1\" name=\"q100_caribbeanBuffet[]\" value=\"Add fresh fruit salad with mangos for $1.70 per person\" \/>\n              <label for=\"input_100_1\"> Add fresh fruit salad with mangos for $1.70 per person <\/label><\/span><span class=\"clearfix\"><\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_102\">\n        <label class=\"form-label-right\" id=\"label_102\" for=\"input_102\"> Pasta Primavera: <\/label>\n        <div id=\"cid_102\" class=\"form-input\">\n          <div class=\"form-single-column\"><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_102_0\" name=\"q102_pastaPrimavera[]\" value=\"Pasta Primavera\" \/>\n              <label for=\"input_102_0\"> Pasta Primavera <\/label><\/span><span class=\"clearfix\"><\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_38\">\n        <label class=\"form-label-right\" id=\"label_38\" for=\"input_38\"> Beverages: <\/label>\n        <div id=\"cid_38\" class=\"form-input\">\n          <div class=\"form-single-column\"><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_38_0\" name=\"q38_beverages[]\" value=\"Fresh brewed Iced Tea\" \/>\n              <label for=\"input_38_0\"> Fresh brewed Iced Tea <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_38_1\" name=\"q38_beverages[]\" value=\"Fresh Made Lemonade\" \/>\n              <label for=\"input_38_1\"> Fresh Made Lemonade <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_38_2\" name=\"q38_beverages[]\" value=\"Coke\" \/>\n              <label for=\"input_38_2\"> Coke <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_38_3\" name=\"q38_beverages[]\" value=\"Diet Coke\" \/>\n              <label for=\"input_38_3\"> Diet Coke <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_38_4\" name=\"q38_beverages[]\" value=\"Sprite\" \/>\n              <label for=\"input_38_4\"> Sprite <\/label><\/span><span class=\"clearfix\"><\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_103\">\n        <label class=\"form-label-right\" id=\"label_103\" for=\"input_103\"> Lasagna: <\/label>\n        <div id=\"cid_103\" class=\"form-input\">\n          <div class=\"form-single-column\"><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_103_0\" name=\"q103_lasagna[]\" value=\"Meat\" \/>\n              <label for=\"input_103_0\"> Meat <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_103_1\" name=\"q103_lasagna[]\" value=\"Vegetable\" \/>\n              <label for=\"input_103_1\"> Vegetable <\/label><\/span><span class=\"clearfix\"><\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_39\">\n        <label class=\"form-label-right\" id=\"label_39\" for=\"input_39\"> Accompaniments: <\/label>\n        <div id=\"cid_39\" class=\"form-input\">\n          <div class=\"form-single-column\"><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_39_0\" name=\"q39_accompaniments39[]\" value=\"Fresh Fruit Salad\" \/>\n              <label for=\"input_39_0\"> Fresh Fruit Salad <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_39_1\" name=\"q39_accompaniments39[]\" value=\"Fresh Vegetable Tray\" \/>\n              <label for=\"input_39_1\"> Fresh Vegetable Tray <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_39_2\" name=\"q39_accompaniments39[]\" value=\"Fresh Vegetable and Cheese Tray\" \/>\n              <label for=\"input_39_2\"> Fresh Vegetable and Cheese Tray <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_39_3\" name=\"q39_accompaniments39[]\" value=\"Vegetable of the Day\" \/>\n              <label for=\"input_39_3\"> Vegetable of the Day <\/label><\/span><span class=\"clearfix\"><\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_45\">\n        <div id=\"cid_45\" class=\"form-input-wide\">\n          <div id=\"text_45\" class=\"form-html\">\n            :: All lunch buffets include fresh-brewed iced tea and lemonade (Coke and Diet Coke available upon request), dessert snack, servingware, utensils, plates, napkins, and cups.\n          <\/div>\n        <\/div>\n      <\/li>\n    <\/ul>\n    <ul class=\"form-section-closed\" style=\"height: 60px;clear:both;\" id=\"section_104\">\n      <li id=\"cid_104\" class=\"form-input-wide\">\n        <div class=\"form-collapse-table\" id=\"collapse_104\"><span class=\"form-collapse-mid\" id=\"collapse-text_104\">6. Additional Beverage Sales<\/span><span class=\"form-collapse-right form-collapse-right-hide\">&nbsp;<\/span>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_105\">\n        <label class=\"form-label-right\" id=\"label_105\" for=\"input_105\"> Water: <\/label>\n        <div id=\"cid_105\" class=\"form-input\">\n          <div class=\"form-single-column\"><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_105_0\" name=\"q105_water[]\" value=\"Bottled Water for $1.99 per person\" \/>\n              <label for=\"input_105_0\"> Bottled Water for $1.99 per person <\/label><\/span><span class=\"clearfix\"><\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_106\">\n        <label class=\"form-label-right\" id=\"label_106\" for=\"input_106\"> Fresh Brewed Iced Tea: <\/label>\n        <div id=\"cid_106\" class=\"form-input\">\n          <div class=\"form-single-column\"><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_106_0\" name=\"q106_freshBrewed[]\" value=\"\u00bd gallon serves 6 people for $1.99\" \/>\n              <label for=\"input_106_0\"> \u00bd gallon serves 6 people for $1.99 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_106_1\" name=\"q106_freshBrewed[]\" value=\"1 gallon serves 12 people for $3.99\" \/>\n              <label for=\"input_106_1\"> 1 gallon serves 12 people for $3.99 <\/label><\/span><span class=\"clearfix\"><\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_107\">\n        <label class=\"form-label-right\" id=\"label_107\" for=\"input_107\"> Sweet Iced Tea: <\/label>\n        <div id=\"cid_107\" class=\"form-input\">\n          <div class=\"form-single-column\"><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_107_0\" name=\"q107_sweetIced[]\" value=\"\u00bd gallon serves 6 people for $1.99\" \/>\n              <label for=\"input_107_0\"> \u00bd gallon serves 6 people for $1.99 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_107_1\" name=\"q107_sweetIced[]\" value=\"1 gallon serves 12 people for $3.99\" \/>\n              <label for=\"input_107_1\"> 1 gallon serves 12 people for $3.99 <\/label><\/span><span class=\"clearfix\"><\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_108\">\n        <label class=\"form-label-right\" id=\"label_108\" for=\"input_108\"> Fresh Made Lemonade: <\/label>\n        <div id=\"cid_108\" class=\"form-input\">\n          <div class=\"form-single-column\"><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_108_0\" name=\"q108_freshMade[]\" value=\"\u00bd gallon serves 6 people for $1.99\" \/>\n              <label for=\"input_108_0\"> \u00bd gallon serves 6 people for $1.99 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_108_1\" name=\"q108_freshMade[]\" value=\"1 gallon serves 12 people for $3.99\" \/>\n              <label for=\"input_108_1\"> 1 gallon serves 12 people for $3.99 <\/label><\/span><span class=\"clearfix\"><\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_109\">\n        <label class=\"form-label-right\" id=\"label_109\" for=\"input_109\"> Soft Drinks: <\/label>\n        <div id=\"cid_109\" class=\"form-input\">\n          <div class=\"form-single-column\"><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_109_0\" name=\"q109_softDrinks[]\" value=\"2L Coke serves 6 people for $3.99\" \/>\n              <label for=\"input_109_0\"> 2L Coke serves 6 people for $3.99 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_109_1\" name=\"q109_softDrinks[]\" value=\"2L Diet Coke serves 6 people for $3.99\" \/>\n              <label for=\"input_109_1\"> 2L Diet Coke serves 6 people for $3.99 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_109_2\" name=\"q109_softDrinks[]\" value=\"2L Sprite serves 6 people for $3.99\" \/>\n              <label for=\"input_109_2\"> 2L Sprite serves 6 people for $3.99 <\/label><\/span><span class=\"clearfix\"><\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n    <\/ul>\n    <ul class=\"form-section-closed\" style=\"height: 60px;clear:both;\" id=\"section_110\">\n      <li id=\"cid_110\" class=\"form-input-wide\">\n        <div class=\"form-collapse-table\" id=\"collapse_110\"><span class=\"form-collapse-mid\" id=\"collapse-text_110\">7. Seasonal Selections<\/span><span class=\"form-collapse-right form-collapse-right-hide\">&nbsp;<\/span>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_65\">\n        <label class=\"form-label-right\" id=\"label_65\" for=\"input_65\"> On-Site Grill:** <\/label>\n        <div id=\"cid_65\" class=\"form-input\">\n          <div class=\"form-single-column\"><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_65_0\" name=\"q65_onsiteGrill[]\" value=\"Hamburgers and Hot Dogs\" \/>\n              <label for=\"input_65_0\"> Hamburgers and Hot Dogs <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_65_1\" name=\"q65_onsiteGrill[]\" value=\"BBQ Ribs and BBQ Chicken\" \/>\n              <label for=\"input_65_1\"> BBQ Ribs and BBQ Chicken <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_65_2\" name=\"q65_onsiteGrill[]\" value=\"Bratwurst with peppers and onions (substitute or add to grill order for $.50 per person)\" \/>\n              <label for=\"input_65_2\"> Bratwurst with peppers and onions (substitute or add to grill order for $.50 per person) <\/label><\/span><span class=\"clearfix\"><\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_69\">\n        <label class=\"form-label-right\" id=\"label_69\" for=\"input_69\"> *Main dish selection includes choice of: <\/label>\n        <div id=\"cid_69\" class=\"form-input\">\n          <div class=\"form-single-column\"><span class=\"form-radio-item\" style=\"clear:left;\"><input type=\"radio\" class=\"form-radio\" id=\"input_69_0\" name=\"q69_mainDish\" value=\"Pasta Salad\" \/>\n              <label for=\"input_69_0\"> Pasta Salad <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-radio-item\" style=\"clear:left;\"><input type=\"radio\" class=\"form-radio\" id=\"input_69_1\" name=\"q69_mainDish\" value=\"Coleslaw\" \/>\n              <label for=\"input_69_1\"> Coleslaw <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-radio-item\" style=\"clear:left;\"><input type=\"radio\" class=\"form-radio\" id=\"input_69_2\" name=\"q69_mainDish\" value=\"Potato Salad\" \/>\n              <label for=\"input_69_2\"> Potato Salad <\/label><\/span><span class=\"clearfix\"><\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_111\">\n        <label class=\"form-label-right\" id=\"label_111\" for=\"input_111\"> Turkey: <\/label>\n        <div id=\"cid_111\" class=\"form-input\">\n          <div class=\"form-single-column\"><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_111_0\" name=\"q111_turkey[]\" value=\"Oven Roasted Turkey\" \/>\n              <label for=\"input_111_0\"> Oven Roasted Turkey <\/label><\/span><span class=\"clearfix\"><\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_73\">\n        <div id=\"cid_73\" class=\"form-input-wide\">\n          <div id=\"text_73\" class=\"form-html\">\n            :: All On-Site Grills are served with Baked Beans, Chips, Fresh Brewed Iced Tea, Lemonade and Dessert. **Please give 48 hour notice.\n          <\/div>\n        <\/div>\n      <\/li>\n    <\/ul>\n    <ul class=\"form-section-closed\" style=\"height: 60px;clear:both;\" id=\"section_115\">\n      <li id=\"cid_115\" class=\"form-input-wide\">\n        <div class=\"form-collapse-table\" id=\"collapse_115\"><span class=\"form-collapse-mid\" id=\"collapse-text_115\">8. SUBMIT ORDER<\/span><span class=\"form-collapse-right form-collapse-right-hide\">&nbsp;<\/span>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_40\">\n        <label class=\"form-label-right\" id=\"label_40\" for=\"input_40\"> Please provide comments or additional information. <\/label>\n        <div id=\"cid_40\" class=\"form-input\">\n          <textarea id=\"input_40\" class=\"form-textarea\" name=\"q40_pleaseProvide\" cols=\"30\" rows=\"2\"><\/textarea>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_47\">\n        <div id=\"cid_47\" class=\"form-input-wide\">\n          <div style=\"margin-left:156px\" class=\"form-buttons-wrapper\">\n            <button id=\"input_47\" type=\"submit\" class=\"form-submit-button\">\n              SUBMIT MY REQUEST\n            <\/button>\n            &nbsp;\n            <button id=\"input_reset_47\" type=\"reset\" class=\"form-submit-reset\">\n              Clear Form\n            <\/button>\n            &nbsp;\n            <button id=\"input_print_47\" style=\"margin-left:25px;\" class=\"form-submit-print\" type=\"button\">\n              <img src=\"http:\/\/www.jotform.com\/images\/printer.png\" align=\"absmiddle\" \/>\n              Print Form\n            <\/button>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_55\">\n        <div id=\"cid_55\" class=\"form-input-wide\">\n          <div id=\"text_55\" class=\"form-html\">\n            If you are having trouble submitting the form please check all the necessary fields. Please review the form and try again, thank you.\n          <\/div>\n        <\/div>\n      <\/li>\n      <li style=\"display:none\">\n        Should be Empty:\n        <input type=\"text\" name=\"website\" value=\"\" \/>\n      <\/li>\n    <\/ul>\n  <\/div>\n  <input type=\"hidden\" id=\"simple_spc\" name=\"simple_spc\" value=\"93162152021\" \/>\n  <script type=\"text\/javascript\">\n  document.getElementById(\"si\" + \"mple\" + \"_spc\").value = \"93162152021-93162152021\";\n  <\/script>\n<\/form><\/body>\n<\/html>\n");

