// JavaScript Document
/* Define the prefix for the pictures depending on the month of the year on the banner*/
/* pref = s for Summer */
/* pref = p for Spring  */
/* pref = w for Winter */
/* pref = a for Autum */
	var today = new Date();
	var mes = today.getMonth(); 
	if ( mes == 11 || mes == 0  || mes == 1 ) {
		var pref = 'w';
	} else {
		if ( mes == 2 || mes == 3 ) {
			var pref = 'p';
		}
		else { 
			if ( mes == 9 || mes == 10 ) {
				var pref = 'a';
			}
			else { 
				pref = 's';
			}
		}
	} 
  var sourcea = "p";
  sourcea += pref;
  sourcea += "bentry";
  sourcea += ".jpg";
  document.write("<img src='http://www.woodlandpond.org/images/banner/"+sourcea+"' align='center'>");