Food = new Array(10);

for (i = 0; i < Food.length; ++i)
  Food [i] = new Array (3); 

Food[0][0] = '#1 Chicken Tikka Roll w/Fries';
Food[0][1] = 'Cut pieces of chicken tikka kabobs on a paratha with lettuce, tomato and onions served with fries.';
Food[0][2] = '$4.99';
Food[0][3] = 'images/LunchSpecials/ChickenTikkaRollCombo.JPG';

Food[1][0] = '#2 Burger w/Fries';
Food[1][1] = 'Choose between Vegetarian, Chicken or Beef Burger.';
Food[1][2] = '$5.99';
Food[1][3] = 'images/Entrees/ChickenBurger.JPG';

Food[2][0] = '#3 Chicken Biriyani w/Raita';
Food[2][1] = 'Fragrant dish of long-grained aromatic basmati rice combined with boneless pieces of chicken and a mixture of characteristic spices served with Raita.';
Food[2][2] = '$6.99';
Food[2][3] = 'images/RiceDishes/ChickenBiriyani.JPG';

Food[3][0] = '#4 Butter Chicken w/2 Rotis';
Food[3][1] = 'Grilled chicken pieces cooked with herbs and other spices in a creamy sauce.';
Food[3][2] = '$7.99';
Food[3][3] = 'images/Entrees/ButterChicken.JPG';

Food[4][0] = '#5 Mutton Masala w/2 Rotis';
Food[4][1] = 'Goat pieces cooked in a traditional curry sauce made of onions, tomatoes and spices served with two Rotis.';
Food[4][2] = '$8.99';
Food[4][3] = 'images/Entrees/MuttonMasala.JPG';

Food[5][0] = '#6 Mix Veg Paratha Roll w/Fries';
Food[5][1] = 'A mix of stir fried vegetables on a paratha with lettuce, tomatoes and onions served with fries.';
Food[5][2] = '$3.99';
Food[5][3] = 'images/LunchSpecials/MixVegParathaRoll.JPG';

Food[6][0] = '#7 Tawa Fry Eggplant w/2 Rotis';
Food[6][1] = 'A special recipe from Gujarat (India)! Indian baby eggplant stuffed with a tawa fry seasoning and pan fried with potatoes served with two Rotis.';
Food[6][2] = '$7.99';
Food[6][3] = 'images/Entrees/TawaFryEggplant.jpg';

Food[7][0] = '#8 Veggie Biriyani w/Raita';
Food[7][1] = 'Fragrant dish of long-grained aromatic basmati rice combined with a mix of vegetables and a mixture of characteristic spices served with Raita.';
Food[7][2] = '$6.99';
Food[7][3] = 'images/RiceDishes/VeggieBiriyani.JPG';

Food[8][0] = '#9 Paneer Tikka Masala w/2 Rotis';
Food[8][1] = 'Fresh Indian Cheese cubes (Looks exactly like Tofu!) cooked with herbs and other spices in a creamy sauce.';
Food[8][2] = '$7.99';
Food[8][3] = 'images/Entrees/PaneerTikkaMasala.JPG';

Food[9][0] = '#10 Any Small Pizza & Drink';
Food[9][1] = 'Choose from any of our speciality pizzas or create your own with upto two toppings.';
Food[9][2] = '$7.99';
Food[9][3] = 'images/Pizza/PaneerTehelka.JPG';
 
for (i = 0; i < Food.length; ++i)
{
  document.writeln('<dl>');
  if (Food[i][3].length == 0)
    //document.writeln('  <dt style="color: #c0237d; font-size: 11px; font-weight: normal">' + Food[i][0] + '</dt>');
    document.writeln('  <dt><a style="text-decoration: underline; color: #c0237d; font-size: 11px; font-weight: normal"; href="javascript:void(0)" onMouseOver="return coolTip(\'<table cellpadding=0 cellspacing=0 border=0 align=center><tr><td><img class=noborder src=%22images/trans.gif%22 width=5 height=1></td><td>' + Food[i][1] + '<td></tr><tr><td colspan=2><img class=noborder src=%22images/trans.gif%22 width=1 height=10></td></tr><tr><td colspan=2 align=center style=%22color: #1464BE;align: center;font-weight: bold;%22>' + Food[i][2] + '<td></tr></table>' + '\',CAPTION,\'' + Food[i][0] + '\')" onMouseOut="nd()">' + Food[i][0] + '</a></dt>');  
  else
    document.writeln('  <dt><a style="text-decoration: underline; color: #c0237d; font-size: 11px; font-weight: normal"; href="javascript:void(0)" onMouseOver="return coolTip(\'<img class=noborder align=right style=%22padding-left:2px; float:right; width:350px;%22 src=%22' + Food[i][3] + '%22><br><table cellpadding=0 cellspacing=0 border=0 align=center><tr><td><img class=noborder src=%22images/trans.gif%22 width=5 height=1></td><td>' + Food[i][1] + '<td></tr><tr><td colspan=2><img class=noborder src=%22images/trans.gif%22 width=1 height=10></td></tr><tr><td colspan=2 align=center style=%22color: #1464BE;align: center;font-weight: bold;%22>' + Food[i][2] + '<td></tr></table>' + '\',CAPTION,\'' + Food[i][0] + '\')" onMouseOut="nd()">' + Food[i][0] + '</a></dt>');  
  
  document.writeln('  <dd class="price" style="font-size: 11px; font-weight: normal">' + Food[i][2] + '</dd>');
  
//  if (Food[i][1].length != 0)       
//    document.writeln('  <dd class="ingredients">' + Food[i][1] + '</dd>');
    document.writeln('</dl>');
}