Items = new Array(19);

for (i = 0; i < Items.length; ++i)
  Items [i] = new Array (4); 
  
Items[0][0] = 'Chicken Biriyani';
Items[0][1] = 'Fragrant long-grained aromatic basmati rice combined with boneless pieces of chicken and a mixture of characteristic spices.';
Items[0][2] = '$65.00';
Items[0][3] = 'images/RiceDishes/ChickenBiriyani.JPG';

Items[1][0] = 'Goat Biriyani';
Items[1][1] = 'Fragrant long-grained aromatic basmati rice combined with goat meat and a mixture of characteristic spices.';
Items[1][2] = '$85.00';
Items[1][3] = 'images/RiceDishes/GoatBiriyani.JPG';

Items[2][0] = 'Butter Chicken';
Items[2][1] = 'Boneless pieces of tender chicken cooked in herbs and other spices in a creamy sauce.';
Items[2][2] = '$90.00';
Items[2][3] = 'images/Entrees/ButterChicken.JPG';

Items[3][0] = 'Chicken Masala';
Items[3][1] = 'Boneless chicken pieces cooked in traditional curry sauce made of onions, tomatoes and spices.';
Items[3][2] = '$80.00';
Items[3][3] = 'images/Entrees/ChickenMasala.JPG';

Items[4][0] = 'Mutton Masala';
Items[4][1] = 'Goat pieces cooked in traditional curry sauce made of onions, tomatoes and spices.';
Items[4][2] = '$95.00';
Items[4][3] = 'images/Entrees/MuttonMasala.JPG';

Items[5][0] = 'Daal Gosht';
Items[5][1] = 'Goat meat cooked with lentils. Served with Jeera Rice Rice Dishes.';
Items[5][2] = '$100.00';
Items[5][3] = '';

Items[6][0] = 'Veggie Biriyani';
Items[6][1] = 'Fragrant long-grained aromatic basmati rice combined with a mix of vegetables and a mixture of characteristic spices.';
Items[6][2] = '$65.00';
Items[6][3] = 'images/RiceDishes/VeggieBiriyani.JPG';

Items[7][0] = 'Paneer Chilly';
Items[7][1] = 'Paneer cubes stir fried with onions, green chillis, green peppers, curry leaves and spices.';
Items[7][2] = '$110.00';
Items[7][3] = '';

Items[8][0] = 'Paneer Tikka Masala';
Items[8][1] = 'Marinated paneer pieces cooked in herbs and other spices in a creamy sauce.';
Items[8][2] = '$90.00';
Items[8][3] = 'images/Entrees/PaneerTikkaMasala.JPG';

Items[9][0] = 'Tawa Fry Eggplant (w/ Potatoes)';
Items[9][1] = 'A special recipe from Gujarat (India)! Indian baby eggplant stuffed with a tawa fry seasoning and pan fried with potatoes.';
Items[9][2] = '$75.00';
Items[9][3] = 'images/Entrees/TawaFryEggplant.jpg';

Items[10][0] = 'Mix Vegetables';
Items[10][1] = 'A mix of vegetables cooked in a special chick pea flour and spice mix.';
Items[10][2] = '$75.00';
Items[10][3] = '';

Items[11][0] = 'Tadka Daal';
Items[11][1] = 'Lentils cooked in spices and tomatoes.';
Items[11][2] = '$40.00';
Items[11][3] = 'images/Entrees/TadkaDaal.JPG';

Items[12][0] = 'Jeera Rice';
Items[12][1] = 'Aromatic basmati rice cooked with cumin.';
Items[12][2] = '$35.00';
Items[12][3] = 'images/RiceDishes/JeeraRice.JPG';

Items[13][0] = 'Veg Pakoda';
Items[13][1] = 'Slices of Potatoes and/or onion slivers dipped in chick-pea flour batter and deep fried.';
Items[13][2] = '$60.00';
Items[13][3] = 'images/Appetizers/VegPakoda.JPG';

Items[14][0] = 'Bhel';
Items[14][1] = 'A mix of puffed rice and crispy chick pea noodles mixed with onion, tomatoes, chutneys and other goodies.';
Items[14][2] = '$50.00';
Items[14][3] = 'images/Appetizers/Bhel.JPG';

Items[15][0] = 'Aloo Samosa (Minimum 20)';
Items[15][1] = '';
Items[15][2] = '$0.65';
Items[15][3] = '';

Items[16][0] = 'Chicken Samosa (Minimum 20)';
Items[16][1] = 'Flaky golden pastry stuffed with chicken and Indian spices.';
Items[16][2] = '$0.75';
Items[16][3] = '';

Items[17][0] = 'Roti (Minimum 20)';
Items[17][1] = 'Whole wheat flat bread pan roasted.';
Items[17][2] = '$0.39';
Items[17][3] = 'images/Breads/Roti.jpg';

Items[18][0] = 'Paratha (Minimum 20)';
Items[18][1] = 'Whole wheat flat bread lightly pan fried.';
Items[18][2] = '$0.69';
Items[18][3] = 'images/Breads/Paratha.JPG';

document.writeln('<dl class="nodot">');
document.writeln('  <dd><span style="float:left; color:#F57629; font-size: 14px; font-weight: bold">Catering Items</span></dd>');
document.writeln('  <dd><span style="float:right; color:#F57629; font-size: 14px; font-weight: bold">Full Pan / Tray</span></dd>');
document.writeln('</dl>');

for (i = 0; i < Items.length; ++i)
{
  document.writeln('<dl>');
  
  if (Items[i][3].length == 0)
    document.writeln('  <dt>' + Items[i][0] + '</dt>');
  else
    document.writeln('  <dt><a style="text-decoration: underline; color: #c0237d" href="javascript:void(0)" onMouseOver="return coolTip(\'<img class=noborder align=right style=%22padding-left:2px; float:right; width:350px;%22 src=%22' + Items[i][3] + '%22><br><table cellpadding=0 cellspacing=0 border=0><tr><td><img class=noborder src=%22images/trans.gif%22 width=5 height=1></td><td>' + Items[i][1] + '<td></tr></table>' + '\',CAPTION,\'' + Items[i][0] + '\')" onMouseOut="nd()">' + Items[i][0] + '</a></dt>');
  
  document.writeln('  <dd class="price">' + Items[i][2] + '</dd>');
  document.writeln('</dl>');
}