var startdatetext =" ";
var monthtext =" ";
var today = new Date();
var thismonth = today.getMonth();
var thisday = today.getDate();

	switch (thismonth) {
		case 0:
			monthtext = "January";
			break;
		case 1:
			monthtext = "February";
			break;
		case 2:
			monthtext = "March";
			break;
		case 3:
			monthtext = "April";
			break;
		case 4:
			monthtext = "May";
			break;
		case 5:
			monthtext = "June";
			break;
		case 6:
			monthtext = "July";
			break;
		case 7:
			monthtext = "August";
			break;
		case 8:
			monthtext = "September";
			break;
		case 9:
			monthtext = "October";
			break;
		case 10:
			monthtext = "November";
			break;
		case 11:
			monthtext = "December";
			break;
		default:
			monthtext = "oops";
			}

if (thisday < 8) {
	startdatetext = " in the first week of ";}
	else if ((thisday > 7) && (thisday < 15)) {
		startdatetext = " in the second week of ";}
		else if ((thisday > 14) && (thisday < 22)) {
			startdatetext = " in the third week of ";}
			else { startdatetext = " at the end of "; }
