
var d = new Date();
theDay=d.getDay();
switch (theDay)
{
case 1:
  document.write("<strong>Monday:</strong><br /><b>Soup of the Day:<br />Vegetable Udon<br />Noodle</b> (Veggie)<br /><br /><b>Catalan Chorizo,<br />Chickpea & Spinach</b> (Meaty)");
  break;
case 2:
  document.write("<strong>Tuesday:</strong><br /><b>Soup of the Day:<br />Chicken <br />Tom Yum<br /></b> (Meaty)<br /><b>Slow Roasted Tomato<br />& Red Pepper</b> (Veggie)");
  break;
case 3:
  document.write("<strong>Wednesday:</strong><br /><b>Soup of the Day:<br />Thai Sweet Potato,<br />Coconut & Coriander</b> (Veggie)<br /><b>Tuscan Pea,<br />Broad Bean & Pancetta</b>(Meaty)");
  break;
case 4:
  document.write("<strong>Thursday:</strong><br /><b>Soup of the Day:<br />Malaysian Fish Laksa<br /></b>(Meaty)<br /><br /><b>Italian Spring Greens</b> (Veggie)");
  break;
case 5:
  document.write("<strong>Friday:</strong><br /><b>Soup of the Day:<br />Goan Spiced<br />Vegetable</b> (Veggie)<br /><br /><b>Italian Chicken<br />Parmigiana</b> (Meaty)");
  break;
case 6:
  document.write("<strong>Saturday</strong><br />Sorry Closed<br />See you Monday<br />for Breakfast!");
  break;
case 0:
  document.write("<strong>Sunday</strong><br />Sorry Closed<br />See you Monday<br />for Breakfast!");
  break;
default:
  document.write("Watch out for our specials!");
}


