Breads = new Array(6);

for (i = 0; i < Breads.length; ++i)
	Breads [i] = new Array (5); 
	
Breads[0][0] = 'Paratha';
Breads[0][1] = 'A whole wheat flat bread lightly pan fried.';
Breads[0][2] = '$0.99';
Breads[0][3] = 'images/Breads/Paratha.JPG';

Breads[1][0] = 'Roti';
Breads[1][1] = 'A whole wheat flat bread pan roasted';
Breads[1][2] = '$0.79';
Breads[1][3] = 'images/Breads/Roti.jpg';

Breads[2][0] = 'Chilli Paratha';
Breads[2][1] = 'A whole wheat flat bread stuffed lightly with Green Chillis and Garlic, then pan fried.';
Breads[2][2] = '$1.49';
Breads[2][3] = 'images/Breads/ChiliParatha.JPG';
 
Breads[3][0] = 'Aloo Paratha';
Breads[3][1] = 'A whole wheat flat bread stuffed with mashed potatoes and spices, then pan fried.';
Breads[3][2] = '$1.99';
Breads[3][3] = '';

Breads[4][0] = 'Gobi Paratha';
Breads[4][1] = 'A whole wheat flat bread stuffed with grated cauliflower and spices, then pan fried.';
Breads[4][2] = '$1.99';
Breads[4][3] = '';

Breads[5][0] = 'Naan';
Breads[5][1] = 'An oven-baked flat bread made of white flour.';
Breads[5][2] = '$1.99';
Breads[5][3] = 'images/Breads/naan.jpg';
 
for (i = 0; i < Breads.length; ++i)
{
  document.writeln('<dl>');
  
  if (Breads[i][3].length == 0)
    document.writeln('  <dt>' + Breads[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' + Breads[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>' + Breads[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>' + Breads[i][2] + '<td></tr></table>' + '\',CAPTION,\'' + Breads[i][0] + '\')" onMouseOut="nd()">' + Breads[i][0] + '</a></dt>');  

  document.writeln('  <dd class="price">' + Breads[i][2] + '</dd>');
  
  if (Breads[i][1].length != 0) 
    document.writeln('  <dd class="ingredients">' + Breads[i][1] + '</dd>');
  
  document.writeln('</dl>');
}