ParathaRolls = new Array(9);

for (i = 0; i < ParathaRolls.length; ++i)
	ParathaRolls [i] = new Array (3); 
	
ParathaRolls[0][0] = 'Chicken Tikka Roll';
ParathaRolls[0][1] = 'Cut pieces of chicken tikka kabobs on a paratha with lettuce, tomato and onions.';
ParathaRolls[0][2] = '$3.99';
ParathaRolls[0][3] = 'images/ParathaRolls/ChickenTikkaRoll.JPG';

ParathaRolls[1][0] = 'Seekh Roll (Chicken or Beef)';
ParathaRolls[1][1] = 'Two Sheek kabobs on a paratha with lettuce, tomato and onions.';
ParathaRolls[1][2] = '$3.99';
ParathaRolls[1][3] = 'images/ParathaRolls/BeefSheekRoll.JPG';
 
ParathaRolls[2][0] = 'Beef Boti Kabob Roll';
ParathaRolls[2][1] = 'Grilled rib eye pieces on a paratha with lettuce, tomato and onions.';
ParathaRolls[2][2] = '$3.99';
ParathaRolls[2][3] = '';

ParathaRolls[3][0] = 'Gyro Paratha Roll';
ParathaRolls[3][1] = 'Gyro meat on a paratha with lettuce, tomato and onions.';
ParathaRolls[3][2] = '$3.99';
ParathaRolls[3][3] = 'images/ParathaRolls/GyroParathaRoll.JPG';

ParathaRolls[4][0] = 'Chicken Chilli Roll';
ParathaRolls[4][1] = 'Chicken pieces sautéed with onions, green peppers, green chillis and spices on a paratha with lettuce.';
ParathaRolls[4][2] = '$3.99';
ParathaRolls[4][3] = 'images/ParathaRolls/ChickenChilliRoll.JPG';

ParathaRolls[5][0] = 'Paneer Tikka Roll';
ParathaRolls[5][1] = 'Grilled paneer pieces on a paratha with lettuce, tomato and onions.';
ParathaRolls[5][2] = '$3.99';
ParathaRolls[5][3] = 'images/ParathaRolls/PaneerTikkaRoll.JPG';

ParathaRolls[6][0] = 'Paneer Chili Roll';
ParathaRolls[6][1] = 'Paneer pieces sautéed with onions, green peppers, green chillis and spices on a paratha with lettuce.';
ParathaRolls[6][2] = '$3.99';
ParathaRolls[6][3] = 'images/ParathaRolls/PaneerChilliRoll.JPG';

ParathaRolls[7][0] = 'Egg Bhurji Roll';
ParathaRolls[7][1] = 'Two Eggs scrambled with green chillis, onions and spices on a paratha with lettuce.';
ParathaRolls[7][2] = '$3.99';
ParathaRolls[7][3] = 'images/ParathaRolls/EggBhurjiRoll.JPG';

ParathaRolls[8][0] = 'Mix Veggie Roll';
ParathaRolls[8][1] = 'Fried Brocolli, Carrots and Cauliflower on a paratha with lettuce, tomato and onions.';
ParathaRolls[8][2] = '$2.99';
ParathaRolls[8][3] = '';

for (i = 0; i < ParathaRolls.length; ++i)
{
  document.writeln('<dl>');

  if (ParathaRolls[i][3].length == 0)
    document.writeln('  <dt>' + ParathaRolls[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' + ParathaRolls[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>' + ParathaRolls[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>' + ParathaRolls[i][2] + '<td></tr></table>' + '\',CAPTION,\'' + ParathaRolls[i][0] + '\')" onMouseOut="nd()">' + ParathaRolls[i][0] + '</a></dt>');

  document.writeln('  <dd class="price">' + ParathaRolls[i][2] + '</dd>');

  if (ParathaRolls[i][1].length != 0) 
    document.writeln('  <dd class="ingredients">' + ParathaRolls[i][1] + '</dd>');

  document.writeln('</dl>');
}