// JavaScript Document
//  I changed the suffix to jpg.  Jpg mountain in high quality is 10kb less -annoying intern
	var theDate = new Date();
	var theDate = theDate.getMonth();
	if ((theDate == 11) || (theDate == 0) || (theDate == 1))
	{
		document.write("<img src='http://www.sullivanlawnh.com/images/logo2_winter.jpg' width='378' height='159' border='0'>");
	}
	else if ((theDate == 2) || (theDate == 3) || (theDate == 4))
	{
		document.write("<img src='http://www.sullivanlawnh.com/images/logo2_spring.jpg' width='378' height='159' border='0'>");
	} 
	else if ((theDate == 5) || (theDate == 6) || (theDate == 7))
	{
		document.write("<img src='http://www.sullivanlawnh.com/images/logo2_summer.jpg' width='378' height='159' border='0'>");
	}
	else if ((theDate == 8) || (theDate == 9) || (theDate == 10))
	{
		document.write("<img src='http://www.sullivanlawnh.com/images/logo2_fall.jpg' width='378' height='159' border='0'>");
	}