function dayOfWeekImage() {
var dow = new Array('sunday','monday','tuesday','wednesday','thursday','friday','saturday');
var now = new Date;
var dayNow = now.getDay();
var img = dow[dayNow];
document.write('<a href="discount-code.html" rel="nofollow"><img src="images\/specials\/'+img+'.gif" width="590" height="67" alt="Special Offer" title="Special Offer" border="0"></a>');
}