PizzaList = new Array(6);
for (i = 0; i < PizzaList.length; ++i)
	PizzaList [i] = new Array (5); 
	
PizzaList[0][0] = 'Tandoori';
PizzaList[0][1] = 'Tandoori Chicken, Onions and Tomatoes';
PizzaList[0][2] = '$7.99';
PizzaList[0][3] = '$9.99';
PizzaList[0][4] = '$11.99';
PizzaList[0][5] = 'images/Pizza/TandooriPizza.JPG';

PizzaList[1][0] = 'Saffron Supreme';
PizzaList[1][1] = 'Ground Beef or Chicken, Mushroom, Onions, Green Pepper';
PizzaList[1][2] = '$7.99';
PizzaList[1][3] = '$9.99';
PizzaList[1][4] = '$11.99';
PizzaList[1][5] = '';

PizzaList[2][0] = 'Chicken Tehalka';
PizzaList[2][1] = 'Chicken, Onions, Garlic and Green Chilli on spicy tomato-chilli sauce';
PizzaList[2][2] = '$7.99';
PizzaList[2][3] = '$9.99';
PizzaList[2][4] = '$11.99';
PizzaList[2][5] = 'images/Pizza/ChickenTehalka.JPG';

PizzaList[3][0] = 'Veggie Supreme';
PizzaList[3][1] = 'Tomatoes, Onions, Green Pepper, Mushroom';
PizzaList[3][2] = '$7.99';
PizzaList[3][3] = '$9.99';
PizzaList[3][4] = '$11.99';
PizzaList[3][5] = '';
  
PizzaList[4][0] = 'Paneer Tehelka';
PizzaList[4][1] = 'Paneer, Onions, Garlic and Green Chilli on spicy tomato-chilli sauce';
PizzaList[4][2] = '$7.99';
PizzaList[4][3] = '$9.99';
PizzaList[4][4] = '$11.99';
PizzaList[4][5] = 'images/Pizza/PaneerTehelka.JPG';

PizzaList[5][0] = 'Paneer Masti';
PizzaList[5][1] = 'Paneer, Onions, Tomatoes';
PizzaList[5][2] = '$7.99';
PizzaList[5][3] = '$9.99';
PizzaList[5][4] = '$11.99';
PizzaList[5][5] = '';

document.writeln('<dl class="nodot">');
document.writeln('  <dd class="price"><span style="color: #F57629">Small</span><img class=noborder src="images/trans.gif" width=50 height=1><span style="color: #F57629">Medium</span><img class=noborder src="images/trans.gif" width=50 height=1><span style="color: #F57629">Large</span></dd>');
document.writeln('</dl>');

for (i = 0; i < PizzaList.length; ++i)
{
  document.writeln('<dl class="nodot">');
  if (PizzaList[i][5].length == 0)
    document.writeln('  <dt>' + PizzaList[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' + PizzaList[i][5] + '%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>' + PizzaList[i][1] + '<td></tr></table>' + '\',CAPTION,\'' + PizzaList[i][0] + '\')" onMouseOut="nd()">' + PizzaList[i][0] + '</a></dt>');
  document.writeln('  <dd class="price">' + PizzaList[i][2] + '<img class=noborder src="images/trans.gif" width=70 height=1>' + PizzaList[i][3] + '<img class=noborder src="images/trans.gif" width=46 height=1>' + PizzaList[i][4] + '</dd>');
  document.writeln('  <dd class="ingredients">' + PizzaList[i][1] + '</dd>');
  document.writeln('</dl>');
}