var todaysdate = new Date();
var month = todaysdate.getMonth() + 1;

var months = new Array();
months[1] = "January";  months[7] = "July";
months[2] = "February"; months[8] = "August";
months[3] = "March";    months[9] = "September";
months[4] = "April";    months[10] = "October";
months[5] = "May";      months[11] = "November";
months[6] = "June";     months[12] = "December";


document.write("<H3>Our current Web specials for " + months[month] + "...</H3>");
