RiceDishes = new Array(6);

for (i = 0; i < RiceDishes.length; ++i)
  RiceDishes [i] = new Array (5); 
  
RiceDishes[0][0] = 'Chicken Biriyani';
RiceDishes[0][1] = 'Fragrant dish of long-grained aromatic basmati rice combined with boneless pieces of chicken and a mixture of characteristic spices.';
RiceDishes[0][2] = '$6.99';
RiceDishes[0][3] = 'images/RiceDishes/ChickenBiriyani.JPG';

RiceDishes[1][0] = 'Goat Biriyani';
RiceDishes[1][1] = 'Fragrant dish of long-grained aromatic basmati rice combined with goat meat and a mixture of characteristic spices.';
RiceDishes[1][2] = '$7.99';
RiceDishes[1][3] = 'images/RiceDishes/GoatBiriyani.JPG';

RiceDishes[2][0] = 'Chicken Fried Rice';
RiceDishes[2][1] = 'Basmati Fried Rice with chicken and eggs and stir-fry sauces.';
RiceDishes[2][2] = '$6.99';
RiceDishes[2][3] = '';

RiceDishes[3][0] = 'Veggie Biriyani';
RiceDishes[3][1] = 'Fragrant dish of long-grained aromatic basmati rice combined with a mix of vegetables and a mixture of characteristic spices.';
RiceDishes[3][2] = '$6.99';
RiceDishes[3][3] = 'images/RiceDishes/VeggieBiriyani.JPG';

RiceDishes[4][0] = 'Jeera Rice';
RiceDishes[4][1] = 'Aromatic basmati rice cooked with cumin.';
RiceDishes[4][2] = '$2.99';
RiceDishes[4][3] = 'images/RiceDishes/JeeraRice.JPG';

RiceDishes[5][0] = 'Peas Pulao';
RiceDishes[5][1] = 'Fragrant dish of long-grained aromatic basmati rice cooked with Green Peas (Mutter) and spices.';
RiceDishes[5][2] = '$4.99';
RiceDishes[5][3] = '';

 
for (i = 0; i < RiceDishes.length; ++i)
{
  document.writeln('<dl>');

  if (RiceDishes[i][3].length == 0)
    document.writeln('  <dt>' + RiceDishes[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' + RiceDishes[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>' + RiceDishes[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>' + RiceDishes[i][2] + '<td></tr></table>' + '\',CAPTION,\'' + RiceDishes[i][0] + '\')" onMouseOut="nd()">' + RiceDishes[i][0] + '</a></dt>');

  document.writeln('  <dd class="price">' + RiceDishes[i][2] + '</dd>');

  if (RiceDishes[i][1].length != 0) 
    document.writeln('  <dd class="ingredients">' + RiceDishes[i][1] + '</dd>');

  document.writeln('</dl>');
}