
function WriteChefsSpecial()
{
 d = GetDay('d');
 var sDishTitle;
 var sDishInfo;

 if (d==0)
 {
   //Sun
   sDishTitle="Rezala";  
   sDishInfo="Chicken or Lamb blended with spices, boiled eggs, paneer, yoghurt and cream."
 }
 else if (d==1)
 {
   //Mon
   sDishTitle="Akni Pilau";  
   sDishInfo="Persian Safran Rice mixed with Chicken Tikka, Lamb Tikka and prawns cooked with a blend of mild spices accompanied with a meat curry.";
 }
 else if (d==2)
 {
   sDishTitle="Kaliya Chicker";  
   sDishInfo="Breast of Tandoori Chicken cooked with a very mild yoghurt and cream sauce flavoured with purified butter.";
 }
 else if (d==3)
 {
   sDishTitle="Chicken Tikka";  
   sDishInfo="Delicious pieces of chicked freshly grilled. Served with rice.";
 }
 else if (d==4)
 {
   sDishTitle="Lamb Jalfreizi";  
   sDishInfo="Delicious pieces of lamb freshly grilled. Served with rice.";
 }
 else if (d==5)
 {
   sDishTitle="Mixed Sheikh Kebabs";  
   sDishInfo="Delicious pieces of lamb and chicken freshly grilled. Served with rice.";
 }
 else if (d==6)
 {
   sDishTitle="Aloo-Keema";  
   sDishInfo="Minced meat and potato. Served with rice or naan bread.";
 }

 document.write('<p align="center">');
 document.write('<font class="b12">');
 document.write(sDishTitle+"<BR>");
 document.write('</font>');

 document.write('<font class="n10">');
 document.write(sDishInfo+"<BR>");
 document.write('</font>');
 document.write('</p>');
}