Breads = new Array(12);

for (i = 0; i < Breads.length; ++i)
	Breads [i] = new Array (7); 
	
Breads[0][0] = 'Paratha';
Breads[0][1] = 'A whole wheat flat bread fresh rolled and pan fried in light oil.';
Breads[0][2] = '$0.99';
Breads[0][3] = 'images/Breads/Paratha.JPG';

Breads[1][0] = 'Naan';
Breads[1][1] = 'A leavened bread made from white flour, fresh rolled and baked in a Tandoor.';
Breads[1][2] = '$1.99';
Breads[1][3] = 'images/Breads/naan.jpg';

Breads[2][0] = 'Roti';
Breads[2][1] = 'A whole wheat flat bread fresh rolled and pan roasted.';
Breads[2][2] = '$0.89';
Breads[2][3] = 'images/Breads/Roti.jpg';

Breads[3][0] = 'Garlic Naan';
Breads[3][1] = 'Naan topped with fresh garlic.';
Breads[3][2] = '$2.49';
Breads[3][3] = 'images/Breads/garlicnaan.jpg';

Breads[4][0] = 'Onion Naan';
Breads[4][1] = 'Naan topped with fresh chopped onion.';
Breads[4][2] = '$2.49';
Breads[4][3] = 'images/Breads/onionnaan.jpg';

Breads[5][0] = 'Chilli Naan';
Breads[5][1] = 'Naan topped with fresh chopped Jalapenos.';
Breads[5][2] = '$2.49';
Breads[5][3] = 'images/Breads/chillinaan.jpg';

Breads[6][0] = 'Tandoori Roti';
Breads[6][1] = 'A whole wheat flat bread fresh rolled and baked in a Tandoor.';
Breads[6][2] = '$1.49';
Breads[6][3] = 'images/Breads/IMG_4358.JPG';

Breads[7][0] = 'Chilli Paratha';
Breads[7][1] = 'A paratha stuffed with fresh chopped Jalapenos.';
Breads[7][2] = '$2.49';
Breads[7][3] = 'images/Breads/ChiliParatha.JPG';

Breads[8][0] = 'Aloo Paratha';
Breads[8][1] = 'A paratha stuffed with potatoes and spices.';
Breads[8][2] = '$2.49';
Breads[8][3] = '';

Breads[9][0] = 'Gobi Paratha';
Breads[9][1] = 'A paratha stuffed with cauliflower and spices.';
Breads[9][2] = '$2.49';
Breads[9][3] = '';
 
Breads[10][0] = 'Paneer Paratha';
Breads[10][1] = 'A paratha stuffed with shredded paneer and spices.';
Breads[10][2] = '$2.49';
Breads[10][3] = '';

Breads[11][0] = 'Palak Paneer Paratha';
Breads[11][1] = 'A paratha stuffed with Spinach and Paneer with spices.';
Breads[11][2] = '$2.49';
Breads[11][3] = '';
 
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>');
}
