/* document.write("<img src='images/Holiday_hours_laborday.jpg' width='808' height='50' alt=''>"); */
 var myDays=

["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday","Sunday"]

today=new Date()

thisDay=today.getDay()

thisDay=myDays[thisDay]

if (thisDay=="Monday") 
{
document.write("<img src='images/Specials_MON.jpg' width='808' height='50' alt=''>");
}
else if (thisDay=="Tuesday") 
{
document.write("<img src='images/Specials_TUE.jpg' width='808' height='50' alt=''>");
}
else if (thisDay=="Wednesday") 
{
document.write("<img src='images/Specials_WED.jpg' width='808' height='50' alt=''>");
} 
else if (thisDay=="Thursday") 
{
document.write("<img src='images/Specials_THU.jpg' width='808' height='50' alt=''>");
}
else if (thisDay=="Friday") 
{
document.write("<img src='images/Specials_FRI.jpg' width='808' height='50' alt=''>");
}
else if (thisDay=="Saturday") 
{
document.write("<img src='images/Specials_SAT.jpg' width='808' height='50' alt=''>");
}
else if (thisDay=="Sunday") 
{
document.write("<img src='images/Specials_SUN.jpg' width='808' height='50' alt=''>");
}
else 
{
document.write("");
}
