// JavaScript Document
<!--
//make something called time which contains the current date;
time = new Date ();

//extract the correct day from time and put it into a variable called today;
var today = time.getDay()+1;

//write some HTML to load the right image
document.write("<A HREF='/restaurant/featured/" + today + ".html'><IMG ALT='Special of the Day' SRC='/restaurant/featured/" + today + ".gif' BORDER=0></A>");
// -->