function xhtml_code_generator(){
  function initialize(){
    //menu_items(soup_items, 'soup', 0);
    //menu_items(vegetarian_dim_sum_items, 'vegetarian_dim_sum', 16);
    //menu_items(vegetarian_poultry, 'vegetarian_poultry', 51);
    //menu_items(vegetarian_pork, 'vegetarian_pork', 65);
    //menu_items(vegetarian_beef, 'vegetarian_beef', 76);
    //menu_items(vegetarian_seafood, 'vegetarian_seafood', 89);
    //menu_items(vegetarian_and_bean_curd, 'vegetarian_and_bean_curd', 95);
    //menu_items(vegetarian_noodle, 'vegetarian_noodle', 112);
    //menu_items(vegetarian_special_lunch, 'vegetarian_special_lunch', 132);
    //menu_items(chefs_special, 'chefs_special', 132);
  }

  function menu_items(generate_items, target_element_name, number_start){
    var body = null;
    var break_tag = null;
    var counter_00 = 0;
    var counter_01 = 0;
    var description = '';
    var div_output = null;
    var highlight = false;
    var menu_area = null;
    var menu_items = '';
    var menu_title = null;
    var name = '';
    var number = 0;
    var period = '';
    var row = '';
    var star = '';
    var table_color = '';
    var target_element = null;
    var text_area = null;
    var total_items = 0;
    var xhtml_code = '';

    // Insert the code generator
    target_element = document.getElementById(target_element_name);
    body = document.body;
    menu_area = body.childNodes[1];
    menu_title = menu_area.childNodes[1];

    text_area = document.createElement('textarea');
    text_area.setAttribute('id', 'output');
    text_area.setAttribute('style', 'border: 1px solid grey; height: 200px; width: 100%;white-space: nowrap;');
    break_tag = document.createElement('br');

    menu_area.insertBefore(text_area, menu_title);
    menu_area.insertBefore(break_tag, menu_title);

    // Get the needed data
    menu_items = generate_items();

    // Generate the code
    total_items = menu_items.length;
    counter_01 = number_start;

    for(counter_00 = 0; counter_00 < total_items; counter_00++){
      counter_01 = counter_01 + 1;

      if(highlight == false){
        table_color = 'white';
        highlight = true;
      }else{
        table_color = 'grey';
        highlight = false;
      }

      xhtml_code = xhtml_code + '<table class="menu_menu_item_table_' + table_color + '"> \n';

      switch(menu_items[counter_00][0]){
        case 'g':
          row = '  <tr class="menu_main_menu_item_green"> \n';
          star = '&#160;';
          number = counter_01;
          period = '.';
          break;
        case 'r':
          row = '  <tr class="menu_main_menu_item_red"> \n';
          star = '*';
          number = counter_01;
          period = '.';
          break;
        case 'lg':
          row = '  <tr class="menu_main_menu_item_green"> \n';
          star = '&#160;';
          number = 'L';
          period = '';
          break;
        case 'lr':
          row = '  <tr class="menu_main_menu_item_red"> \n';
          star = '*';
          number = 'L';
          period = '';
          break;
        case 'n':
          row = '  <tr class="menu_main_menu_item_red"> \n';
          star = '';
          number = '';
          period = '';
          break;
      }

      /*
      if(menu_items[counter_00][0] == 'g'){
        row = '  <tr class="menu_main_menu_item_green"> \n';
        star = '&#160;';
      else{
        row = '  <tr class="menu_main_menu_item_red"> \n';
        star = '*';
      }
      */

      xhtml_code = xhtml_code + row;

      xhtml_code = xhtml_code + '    <td> \n';
      xhtml_code = xhtml_code + '      <table class="menu_menu_item_sub_table_00"> \n';
      xhtml_code = xhtml_code + '        <tr> \n';
      xhtml_code = xhtml_code + '          <td class="menu_main_menu_item_number">' + number + period + '</td> \n';
      xhtml_code = xhtml_code + '          <td class="menu_main_menu_item_type">' + star + '</td> \n';
      xhtml_code = xhtml_code + '        </tr> \n';
      xhtml_code = xhtml_code + '      </table> \n';
      xhtml_code = xhtml_code + '    </td> \n';

      name = menu_items[counter_00][1];
      name = name.replace('&', '&amp;');

      if(menu_items[counter_00][0] != 'n'){
        xhtml_code = xhtml_code + '    <td class="menu_main_menu_item_name">' + name + '</td> \n';

        if(menu_items[counter_00][0] == 'g'){
          xhtml_code = xhtml_code + '    <td class="menu_main_menu_item_dots"><div class="menu_main_menu_item_dot_div_green"></div></td> \n';
        }else{
          if(menu_items[counter_00][0] == 'lg'){
            xhtml_code = xhtml_code + '    <td class="menu_main_menu_item_dots"><div class="menu_main_menu_item_dot_div_green"></div></td> \n';
          }else{
            xhtml_code = xhtml_code + '    <td class="menu_main_menu_item_dots"><div class="menu_main_menu_item_dot_div_red"></div></td> \n';
          }
        }

      }else{
        xhtml_code = xhtml_code + '    <td class="menu_main_menu_item_name_center">' + name + '</td> \n';
        xhtml_code = xhtml_code + '    <td class="menu_main_menu_item_dots"><div class="menu_main_menu_item_no_dot_div"></div></td> \n';
      }

      xhtml_code = xhtml_code + '    <td class="menu_main_menu_item_price">' + menu_items[counter_00][2] + '</td> \n';
      xhtml_code = xhtml_code + '  </tr> \n';

      if(menu_items[counter_00][3] != null){
        description = menu_items[counter_00][3].replace('&', '&amp;');
        xhtml_code = xhtml_code + '  <tr> \n';
        xhtml_code = xhtml_code + '    <td></td> \n';

        if(menu_items[counter_00][0] == 'g'){
          xhtml_code = xhtml_code + '    <td class="menu_menu_description_green" colspan="2">' + description + '</td> \n';
        }else{
          xhtml_code = xhtml_code + '    <td class="menu_menu_description_red" colspan="2">' + description + '</td> \n';
        }

        xhtml_code = xhtml_code + '  </tr> \n';
      }

      xhtml_code = xhtml_code + '</table> \n\n';
    }

    // Put the code in the web page
    text_area.value = xhtml_code;
    target_element.innerHTML = text_area.value;
  }

  function soup_items(){
    items = new Array(
      ['r', 'Hot & Sour Soup', '4.50'],
      ['g', 'Tofu & Fresh Mushroom Soup', '4.50'],
      ['g', 'Tofu & Assorted Vegetable Soup' , '4.50'],
      ['g', 'Spinach & Bean Curd Soup', '4.50'],
      ['g', 'Bean Curd Tomato Soup', '4.50'],
      ['r', 'Clear Noodle Soup <br /> Singapore Style', '5.50'],
      ['r', 'Fried Bean Curd with <br /> Cellophane Noodle Soup', '5.50'],
      ['g', 'Cream Mushroom with <br /> Bean & Corn Soup', '5.50'],
      ['g', 'Seaweed with Shredded <br /> Vegetable Soup', '5.50'],
      ['g', 'Fresh Asparagus with <br /> Mushroom Soup', '5.50'],
      ['g', 'House Wonton Soup', '5.50'],
      ['g', 'Vegetarian Ham with <br /> Spinach Tofu Soup', '5.50'],
      ['r', 'Tom Yum Seafood Soup', '5.50'],
      ['g', 'Buddhist Shark Fin Soup', '6.50'],
      ['g', 'Gingko Herbal Soup', '6.50'],
      ['g', 'Yin Yang Soup', '6.50']
    );
    return items;
  }

  function vegetarian_dim_sum_items(){
    items = new Array(
      ['g', 'Crispy Spring Roll (2)', '2.50'],
      ['g', 'Cellophane Noodle Roll', '2.50'],
      ['g', 'Vegetarian Crab Meat Claw', '2.95'],
      ['g', 'Pan Fried Scallion Pancake', '2.50'],
      ['g', 'Steam Bamboo Leaf Sticky <br /> Rice Dumpling', '2.50'],
      ['g', 'Pan Fried Sesame Curry Beef', '2.95'],
      ['g', 'Chick Drum Stick (3)', '4.50'],
      ['g', 'Jicama Seaweed Roll', '4.50'],
      ['g', 'Chicken Dumplings', '4.50'],
      ['g', 'Fried Chicken Nuggets', '5.50'],
      ['g', 'Vietnamese Roll', '4.50'],
      ['g', 'Vegetarian Duck Roll (2)', '4.00'],
      ['g', 'Cold Sesame Bean Curd', '5.50'],
      ['r', 'Satay Singapore', '4.50'],
      ['g', 'Fried Wonton (10)', '3.50'],
      ['g', 'Fried Stuffed Eggplant (4)', '4.50'],
      ['g', 'Pan Fried Dumplings (6)', '4.50'],
      ['r', 'Pan Fried Curry Dumpling', '4.50'],
      ['g', 'Steamed Shanghai Dumplings (6)', '4.50'],
      ['g', 'Steamed Vegetable Buns', '4.50'],
      ['g', 'Steamed Vegetarian Shao-Mai (4)', '4.50'],
      ['g', 'Red and Green Dumpling', '4.50'],
      ['g', 'Dumplings Triple Delight (6)', '4.50'],
      ['g', 'Sesame Chicken', '5.50'],
      ['g', 'Stuffed Crispy Bean Curd', '4.50'],
      ['g', 'Vegetable Fritter', '4.50'],
      ['g', 'Steamed or Pan Fried <br /> Leek Dumpling (6)', '4.50'],
      ['g', 'Crispy Golden Triangle (6)', '4.50'],
      ['g', 'Singapore Latkes', '4.50'],
      ['g', 'Crispy Lotus Blossom', '4.50'],
      ['g', 'Cold Sesame Noodles', '5.00'],
      ['g', 'Seasonal Salad', '5.00'],
      ['g', 'Stuffed Chinese Taro (5)', '5.00'],
      ['g', 'Cold Cellophane Noodle with <br /> Garlic Sauce', '5.50'],
      ['g', 'Asparagus Seaweed Roll', '5.95']
    );
    return items;
  }

  function vegetarian_poultry(){
    items = new Array(
      ['g', 'Diced Chicken with Honey Walnuts', '7.95'],
      ['g', 'Chicken with Honey Cashew Nuts', '7.95'],
      ['r', 'Kung Pao Chicken', '7.95'],
      ['r', 'Chicken with Spicy Black <br /> Bean Chili Sauce', '7.95'],
      ['r', 'Spicy Curry Chicken', '7.95'],
      ['r', 'Ta Chien Chicken with <br /> Brown Hunan Sauce', '7.95'],
      ['g', 'Chicken with Fresh Snow Peas', '7.95'],
      ['g', 'Chicken with String Beans', '7.95'],
      ['g', 'Moo Shu Chicken (with 4 <br /> Pancakes & Plum Sauce)', '7.95'],
      ['g', 'Szechuan Chicken Surrounded <br /> with Greens', '8.95'],
      ['g', 'Pineapple Chicken', '8.95'],
      ['g', 'Lovely Couple in Taro Nest', '9.95'],
      ['g', 'Lychee Crispy Duck', '9.95'],
      ['g', 'Pan Fried Mock Duck', '9.95']
    );
    return items;
  }

  function vegetarian_pork(){
    items = new Array(
      ['r', 'Shredded Pork with Spicy <br /> Garlic Sauce', '7.95'],
      ['r', 'Stir-Fried Shredded Pork <br /> with Bean Sprouts', '7.95'],
      ['r', 'Sliced Pork Szechuan Style', '7.95'],
      ['g', 'Roast Pork with Black Bean Sauce', '7.95'],
      ['g', 'Chinese Black Mushroom with <br /> Roast Pork', '7.95'],
      ['g', 'Sweet and Sour Pork Loin', '7.95'],
      ['g', 'Crispy Sweet and Sour Spare Ribs', '7.95'],
      ['g', 'Pork with String Beans', '7.95'],
      ['g', 'Moo Shu Pork with 4 Pancakes', '7.95'],
      ['g', 'Lucky Family', '8.95'],
      ['r', 'Shredded Vegetable Delight', '8.95']
    );
    return items;
  }

  function vegetarian_beef(){
    items = new Array(
      ['r', 'Beef with Curry Sauce', '7.95'],
      ['r', 'Beef with Chili Bean Sauce', '7.95'],
      ['g', 'Crispy Walnut with Beef', '7.95'],
      ['g', 'Beef with Broccoli', '7.95'],
      ['g', 'Beef with String Beans', '7.95'],
      ['g', 'Beef with Cauliflower', '7.95'],
      ['g', 'Beef with Black Mushroom and <br /> Bamboo Shoots', '7.95'],
      ['g', 'Beef with Pineapple and <br /> Sweet Baby Ginger', '7.95'],
      ['r', 'Beef with Satay Sauce', '7.95'],
      ['g', 'Hong Kong Beef', '7.95'],
      ['g', 'Hunan Beef', '7.95'],
      ['g', 'Beef with Fresh Wild Mushroom', '9.95'],
      ['g', 'Fresh & Tender Asparagus <br /> with Beef', 'M.P.']
    );
    return items;
  }

  function vegetarian_seafood(){
    items = new Array(
      ['r', 'Shrimp with Szechuan Sauce', '9.95'],
      ['g', 'Sweet and Sour Crispy Whole Fish', '10.95'],
      ['r', 'Taro Whole Fish with <br /> Szechuan Sauce', '10.95'],
      ['g', 'Sizzling Seafood Delight', '9.95'],
      ['r', 'Fish Fillet with Kung Pao Sauce', '9.95'],
      ['g', 'Seafood Combination in <br /> Black Bean Sauce', '9.95']
    );
    return items;
  }

  function vegetarian_and_bean_curd(){
    items = new Array(
      ['g', 'Stir-Fried Broccoli in Garlic Sauce', '6.95'],
      ['r', 'Szechuan Eggplant', '7.95'],
      ['g', 'Chinese Eggplant <br /> in Black Bean Sauce', '7.95'],
      ['r', 'Tender String Bean Szechuan Style', '7.95'],
      ['g', 'Vegetarian Delight Buddhist Style', '7.95'],
      ['g', 'Needle Mushroom with Broccoli', '7.95'],
      ['g', 'Double Mushroom with Broccoli', '7.95'],
      ['g', 'Stir-Fried Asparagus and Corn', '7.95'],
      ['g', 'Sweet and Sour Bean Curd', '7.95'],
      ['r', 'Braised Bean Curd', '7.95'],
      ['g', 'Moo Shu Vegetable', '7.95'],
      ['r', 'Eight Treasure Spicy Bean Curd', '7.95'],
      ['g', 'Tofu Hot Pot with <br /> Assorted Vegetable', '7.95'],
      ['r', 'Spicy Bean Curd in Sizzling Platter', '7.95'],
      ['r', 'Curry Bean Curd Singapore Style', '7.95'],
      ['r', 'Family Style Spicy Bean Curd', '7.95'],
      ['g', 'Asparagus with Garlic Sauce', 'Seasonal']
    );
    return items;
  }

  function vegetarian_noodle(){
    items = new Array(
      ['g', 'Vegetarian Lo Mein', '6.95'],
      ['g', 'Vegetable Fried Rice', '6.95'],
      ['g', 'Beef Chow Fun <br /> (Flat Rice Noodle)', '6.95'],
      ['g', 'Pan Fried Rice Noodle Amoy Style', '6.95'],
      ['r', 'Singapore Pan Fried Rice Noodle', '6.95'],
      ['r', 'Beef Chow Fun in <br /> Spicy Chili Bean Sauce', '7.95'],
      ['g', 'Pan Fried Crispy Noodle <br /> with Shredded Pork', '7.95'],
      ['g', 'Buddhist Delight Crispy Noodle', '7.95'],
      ['r', 'Crispy Noodle in Chili Bean Sauce', '7.95'],
      ['g', 'Stir-Fried Shanghai Noodle', '6.95'],
      ['g', 'Chicken Lo Mein', '7.95'],
      ['g', 'Chicken Fried Rice', '7.95'],
      ['g', 'Young Chow Fried Rice', '8.95'],
      ['g', 'Vegetable with Vegetarian <br /> Ham Fried Rice', '8.95'],
      ['g', 'Vegetable with Vegetarian <br /> Ham Lo Mein', '8.95'],
      ['g', 'Shrimp Fried Rice or Lo Mein', '8.95'],
      ['g', 'Seafood Fried Rice or Lo Mein', '8.95'],
      ['g', 'Steamed White Rice', '1.00'],
      ['g', 'Steamed Brown Rice', '1.00']
    );
    return items;
  }

  function vegetarian_special_lunch(){
    items = new Array(
      ['lg', 'Beef or Chicken or <br /> Pork with Broccoli', '6.50'],
      ['lg', 'Honey Cashew Chicken', '6.50'],
      ['lr', 'Kung Pao Chicken', '6.50'],
      ['lg', 'Chicken or Beef with <br /> Black Bean Sauce', '6.50'],
      ['lr', 'Ta Chien Chicken or Beef or Pork', '6.50'],
      ['lg', 'Moo Shu Chicken or Beef or Pork', '6.50'],
      ['lg', 'Chicken or Beef or <br /> Pork with String Beans', '6.50'],
      ['lg', 'Mixed Vegetables Delight w. Tofu', '6.50'],
      ['lr', 'Stired Fried Singapore Rice Noodle', '6.50'],
      ['lg', 'Amoy Style Rice Noodle', '6.50'],
      ['lg', 'Stired Fried Shanghai Noodle', '6.50'],
      ['n', '<span style="font-size: 85%; font-style: italic; font-weight: bold; text-align: center;">Choice of Soup: Miso Soup, Seafood <br /> Shark Fin Soup or Seaweed Vegetable <br /> Soup Served with Spring Roll, Curry <br /> Dumpling, Steam Dumpling & Rice </span>', ''],
      ['lr', 'General Tso\'s Chicken', '7.50'],
      ['lg', 'Golden Shrimp Singapore', '7.50'],
      ['lg', 'Vegetarian Delight with Tofu', '7.50'],
      ['lg', 'Golden Lion\'s Head', '7.50'],
      ['lg', 'Vegetable Tempura', '7.50'],
      ['lg', 'Stuffed Mushroom', '7.50'],
      ['lg', 'Seafood Combination', '7.50'],
      ['lg', 'Sweet and Sour Spare Ribs', '7.50'],
      ['lg', 'Sauteed Shrimp', '7.50'],
      ['lg', 'Gado-Gado', '7.50']
    );
    return items;
  }

  function chefs_special(){
    items = new Array(
      ['r', 'Chinese Eggplant w. Bean Curd, String Beans, and Vegetarian Ham', '9.95', 'Cooked in spicy Szechuan bean sauce.'],
      ['g', 'Fresh Mango Chicken Shrimp', '10.95', 'Crispy shrimp and chicken cooked with fresh mango, broccoli, and onions in a garlic mango sauce.'],
      ['g', 'Chinese Black Mushroom with Bamboo Shoot', '8.50', 'Stir-fried with chef\'s special garlic brown sauce.'],
      ['g', 'Chye Choy (Monk\'s Favorite)', '8.50', 'Mixed Chinese dry vegetables & American seasonal fresh vegetables served in brown bean sauce'],
      ['g', 'Steam Bean Curd Special', '9.50', 'Served with black bean saurce or spicy Szechuan sauce, surrounded with fresh seasonal greens.'],
      ['g', 'Buddhist Clear Noodle', '9.50', 'Cellophane noodle with dry vegetable and Chinese herbs, cooked in Taoist sauce.'],
      ['g', 'Supreme Vegetarian Delight (Special Diet Dish)', '9.95', 'Specially selected fresh vegetables, steamed with no flavor added.'],
      ['g', 'Vegetable Tempura', '8.95', 'Fresh seasonal vegetable, blended with corn starch and fried until crispy. Served with satay sauce.'],
      ['g', 'Stuffed Chinese Mushroom', '9.95', 'Large black mushroom stuffed with bean curd, taro, and herbs. Served with baby green salad together with brown sauce.'],
      ['g', 'Vegetarian Roast Duck', '9.95', 'Chunks of cripsy bean curd skin stuffed with tofu, Chinese vegetables, and taro. Served with five spice sauce.'],
      ['g', 'Vegetarian Pork Ribs', '9.95', 'Crispy dough with taro sticks served in sweet & sour or black bean sauce.'],
      ['g', 'Orange Beef', '9.95', 'Crispy mock beef stir-fried with special orange sauce together with broccoli and bell peppers.'],
      ['g', 'Black Bean Beef in Sizzling Platter', '9.95', 'Crunchy mock beef with Chinese Bough onions & black bean sauce.'],
      ['r', 'General Tao\'s Chicken', '9.95', 'Chuncks of crispy chicken and broccoli cooked in chef\'s special sweet and spicy Peking sauce.'],
      ['g', 'Phoenix Nest', '9.95', 'Chicken, beef, pork, baby corn, carrots, water chestnuts, black mushroom, green peas, etc, with Chef\'s special garlic sauce in bird\'s nest.'],
      ['r', 'Beef Slice, Double Green ', '9.95', 'Beef, Chinese kale, seasonal green, minced celery, ginger root, and red chili pepper cooked in barbecue satay sauce.'],
      ['g', 'Sesame Herbal Duck', '9.95', 'Vegetarian duck meat, shitake mushroom, gingko nuts, wolfberry seeds, carrots, and seasonal Chinese green cooked in sesame five spice sauce.'],
      ['g', 'Steamed Soft Tofu with Vegetable Shreds', '9.95', 'Bamboo shoots, Chinese cabbage, celery, roast pork shreds, and soft tofu served in delicious Szechuan sauce.'],
      ['r', 'Lotus Steam Arhats Style', '9.95', 'Red dates, gingko nuts, seitan lotus stem and seeds, taro slice, and Chinese celery cooked in grapes and ginger root juice.'],
      ['g', 'Emerald Buddhist Subgum Deluxe', '9.95', 'Fresh asparagus, shitake mushroom, carrots, and baby corn, servered on crispy pancke with brown Szechuan sauce.'],
      ['r', 'Malaysia Barbecue Roast Pork', '9.95', 'Crispy shredded secian roast pork cooked with barbecued bean curd.'],
      ['g', 'Crispy Stuffed Bean Curd', '9.95', 'Bean curd stuffed with taro, peanuts, Chinese dry veggies, and cooked in hoisin sauce.'],
      ['g', 'Eggplant Fritters with Taro Balls', '10.95', 'Served with mixed fruit sauce from pineapple, lemon, oranges, tomatoes, and ginger.'],
      ['r', 'Golden Lion\'s Head', '9.95', 'Made from golden mushrooms, tofu, five spice bean curd and tofu skin, water chestnuts with fresh veggies, and served with Peking ginger sauce ~ spicy.'],
      ['r', 'Golden Shrimp Singapore', '9.95', 'Cripsy tofu skin filled with seitan, coniaku, mashed yam and potatoe, carrot, and served with Singapore tangy spicy sauce.'],
      ['g', 'Rainbow Chicken', '9.95', 'Chicken chunks with barbecue satay sauce surrounded by broccoli, asparagus, baby corn, and carrots.'],
      ['g', 'Steam Tofu Laver Roll', '9.95', 'Bean curd, asparagus, seitan, and carrots wrapped with seaweed and served with mixed vegetables.'],
      ['g', 'Double Gluten with Green', '9.95', 'Seitan & soya gluten with seasonal vegetables served with house sauce.'],
      ['g', 'Singapore Vegetarian Beef Steak', '9.95', 'Soya bean cake cooked with fresh vegetables in balsamic steak sauce.'],
      ['g', 'Bean Curd Skin Knots with Ham', '9.95', 'Vegetarian ham with fresh seasonal vegetables and tofu skin knots cooked in special sauce.'],
      ['r', 'Ipoh Curry Hot Pot', '10.95', 'Mixed fresh vegetables with bean curd and tofu sticks cooked in delicious spicy curry broth.'],
      ['g', 'Snow Peas with Ham & Gluten Sheet', '9.95', 'Cooked in Chef\'s special brown saurce with ginger.'],
      ['g', 'Bean Curd Double Style', '9.95', 'Bean curd served with two types of sauces: Szechuan & Mandarin.'],
      ['g', 'Pekan Golden Fish', '10.95', 'Made from sweet yam, taro, bean curd, carrot, mashed potatoes, water chestnuts, and served with fresh veggies in Chef\'s Peking sauce.'],
      ['r', 'Sauteed Fried Vegetarian Squid with Chili Bean Sauce', '9.95', ''],
      ['g', 'Stir-Fried "Fresh Greens"', '9.95', 'With tofu, soya ham in a ginger garlic sauce, Shanghai greens, broccoli, spinach, and snow peas.'],
      ['g', 'Four Seasons', '10.95', 'Seasonal fresh veggies, broccoli, string beans, eggplant, tofu, soya-bean balls, walnuts, and served in ginger Szechuan sauce.'],
      ['g', 'Golden Walnut Shrimp', '12.95', 'Flavored crispy shrimp cooked and surrounded in broccoli in salad dressing.'],
      ['g', 'Crispy Smoked Taro Duck', '10.95', 'Crispy soya duck stuffed with taro and green.'],
      ['r', 'Malaysian Spicy Chicken', '9.95', 'Crispy chicken with chunks of pineapple, onions, broccoli, and pepper cooked in Malaysian tany, spicy, hot, and reddish tasty sauce.'],
      ['g', 'Gada - Gado Indonesia', '9.95', 'Crispy tofu, bean sprouts, cabbage, carrots, potatoes, and lettuce served with peanut butter satay sauce.'],
      ['g', 'Vegetarian Salmon Fish', '9.95', 'Steamed or fried salmon with green vegetable cooked in a lemon or black bean sauce.'],
      ['r', 'General Tso\'s Triple Delight', '9.95', 'Crispy spare ribs, chicken chunks, Chinese dough, brocolli, and pepper cooked with ginger and garlic in balsamic General Tso\'s spicy sauce.'],
      ['r', 'Singapore Rendang', '9.95', 'Vegetarian beef, chicken, and lamb cooked in spicy Malaysian curry saurce.'],
      ['g', 'Teriyaki Chicken', '9.95', 'Crispy chicken served with a balsamic teriyaki sauce.'],
      ['g', 'Mongolian Beef(Soya)', '10.95', 'Stir-fried with ginger, garlic, scallion in five spice sauce and served with broccoli.'],
      ['g', 'Eggplant Fritters & Golden Spare Ribs', '9.95', 'Crispy eggplant and spare ribs stir-fried with sweet & sour sauce, sprinkled with Chinese celery.'],
      ['g', 'Coconut Shrimp', '9.95', 'Crispy shrimp cooked with coconut milk in a spicy Malaysian style sauce.'],
      ['r', 'Grilled Seafood Special', '10.95', 'Assorted vegetables with seafood komiaku served in chef\'s special Szechuan sauce.']
    );
    return items;
  }

  /*,
    Ralph Ring, back in the 60's free
    Ottis Car
    John Huttchinson
    Edgar Casey method

      ['g', 'Crispy Spring Roll(2)', '2.50']
  */
  this.initialize = initialize;
}

code = new xhtml_code_generator();
window.onload = code.initialize;

