function getSeason() {
        var m=new Date().getMonth();

	return Math.round(m/4);
}

function displayIt(season) {
	if (getSeason() != season) {
		document.write('display: none;');	
	}
}

