function cThisMonth()
{

// Script to display the current month
var month=new Array(12);	
month[1]="January";		
month[2]="February";
month[3]="March";
month[4]="April";
month[5]="May";
month[6]="June";
month[7]="July";
month[8]="August";
month[9]="September";
month[10]="October";
month[11]="November";
month[12]="December";

var the_day=new Date();				

//return month[the_day.getMonth() + 1] + " special. Discount Prices plus FREE shipping within the continental USA!";
//return "Summer special. FREE SHIPPING in the continental USA.";
//return "Independence Day special. FREE SHIPPING in the continental USA.";
return "Summer special. FREE SHIPPING in the continental USA.";
}