RiceDishes = new Array(10);

for (i = 0; i < RiceDishes.length; ++i)
  RiceDishes [i] = new Array (5); 
  
RiceDishes[0][0] = 'Chicken Biriyani';
RiceDishes[0][1] = 'Chicken and basmati rice cooked together along with yogurt and other spices.';
RiceDishes[0][2] = '$7.99';
RiceDishes[0][3] = 'images/RiceDishes/ChickenBiriyani.JPG';

RiceDishes[1][0] = 'Veggie Biriyani';
RiceDishes[1][1] = 'Vegetables and basmati rice cooked together along with yogurt and other spices.';
RiceDishes[1][2] = '$7.99';
RiceDishes[1][3] = 'images/RiceDishes/VeggieBiriyani.JPG';

RiceDishes[2][0] = 'Goat Biriyani';
RiceDishes[2][1] = 'Bone-in baby goat meat and basmati rice cooked together along with yogurt and other spices.';
RiceDishes[2][2] = '$9.99';
RiceDishes[2][3] = 'images/RiceDishes/GoatBiriyani.JPG';

RiceDishes[3][0] = 'Egg Biriyani';
RiceDishes[3][1] = 'Boiled eggs and basmati rice cooked together along with yogurt and other spices.';
RiceDishes[3][2] = '$7.99';
RiceDishes[3][3] = '';

RiceDishes[4][0] = 'Shrimp Biriyani';
RiceDishes[4][1] = 'Jumbo Shrimps and basmati rice cooked together along with yogurt and other spices.';
RiceDishes[4][2] = '$9.99';
RiceDishes[4][3] = 'images/RiceDishes/ShrimpBiriyani.jpg';

RiceDishes[5][0] = 'Jeera Rice';
RiceDishes[5][1] = 'Basmati rice cooked with cumin seeds.';
RiceDishes[5][2] = '$2.99';
RiceDishes[5][3] = 'images/RiceDishes/JeeraRice.JPG';

RiceDishes[6][0] = 'Peas Pulao';
RiceDishes[6][1] = 'Basmati rice cooked with some vegetables and garden peas.';
RiceDishes[6][2] = '$5.99';
RiceDishes[6][3] = '';

RiceDishes[7][0] = 'Chicken Fried Rice';
RiceDishes[7][1] = 'Boneless chicken pieces and basmati rice cooked indo-chinese style.';
RiceDishes[7][2] = '$7.99';
RiceDishes[7][3] = '';

RiceDishes[8][0] = 'Egg Fried Rice';
RiceDishes[8][1] = 'Scrambled eggs and basmati rice cooked indo-chinese style.';
RiceDishes[8][2] = '$7.99';
RiceDishes[8][3] = '';

RiceDishes[9][0] = 'Vegetable Fried Rice';
RiceDishes[9][1] = 'Basmati rice and veggies cooked indo-chinese style.';
RiceDishes[9][2] = '$7.99';
RiceDishes[9][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>');
}
