	var currentSeason = "";
	var currentTime = new Date();
	var month = currentTime.getMonth() + 1;
	if (month>=3 && month<=5) {
		currentSeason = "spring";
	}
	else if (month>=6 && month<=8) {
		currentSeason = "summer";
	}
	else if (month>=9 && month<=11) {
		currentSeason = "fall";
	}
	else if (month>=12 || month<=2) {
		currentSeason = "winter";
	}

	if (currentSeason == "spring") {
	document.write("<td align='left' valign='top' width=780 height=150 background='graphics/subpage_header-students-spring.jpg'>");
        document.write("<font style='font-family:arial,times;font-size:18;font-weight:500;color:000000;'>&nbsp;</font>");
        document.write("</td>");
	}
	else if (currentSeason == "summer") {
	document.write("<td align='left' valign='top' width=780 height=150 background='graphics/subpage_header-students-summer.jpg'>");
        document.write("<font style='font-family:arial,times;font-size:18;font-weight:500;color:000000;'>&nbsp;</font>");
        document.write("</td>");
	}
	else if (currentSeason == "fall") {
	document.write("<td align='left' valign='top' width=780 height=150 background='graphics/subpage_header-students-fall.jpg'>");
        document.write("<font style='font-family:arial,times;font-size:18;font-weight:500;color:000000;'>&nbsp;</font>");
        document.write("</td>");
	}
	else if (currentSeason == "winter") {
	document.write("<td align='left' valign='top' width=780 height=150 background='graphics/subpage_header-students-winter.jpg'>");
        document.write("<font style='font-family:arial,times;font-size:18;font-weight:500;color:000000;'>&nbsp;</font>");
        document.write("</td>");
	}

