// Seasonal banner change
window.onload = function()
{		
	var homeSeal = document.getElementById("seal");
	
	var smallSeal = document.getElementById("seal-small");

	var d=new Date();
	
	var month=new Array(12);
	month[0]="January";
	month[1]="February";
	month[2]="March";
	month[3]="April";
	month[4]="May";
	month[5]="June";
	month[6]="July";
	month[7]="August";
	month[8]="September";
	month[9]="October";
	month[10]="November";
	month[11]="December";
	
	var currentMonth =  month[d.getMonth()];
	
	if (homeSeal != null) {	
		
		if (currentMonth == "January") {
			homeSeal.style.backgroundImage = "url(" + stylesheetdir + "/images/seal-new-year.png)";
		}
		else if (currentMonth == "February") {
			homeSeal.style.backgroundImage = "url(" + stylesheetdir + "/images/seal-new-year.png)";
		}
		else if (currentMonth == "March") {
			homeSeal.style.backgroundImage = "url(" + stylesheetdir + "/images/seal-spring.png)";
		}
		else if (currentMonth == "April") {
			homeSeal.style.backgroundImage = "url(" + stylesheetdir + "/images/seal-spring.png)";
		}
		else if (currentMonth == "May") {
			homeSeal.style.backgroundImage = "url(" + stylesheetdir + "/images/seal-spring.png)";
		}
		else if (currentMonth == "June") {
			homeSeal.style.backgroundImage = "url(" + stylesheetdir + "/images/seal-summer.png)";
		}
		else if (currentMonth == "July") {
			homeSeal.style.backgroundImage = "url(" + stylesheetdir + "/images/seal-summer.png)";
		}
		else if (currentMonth == "August") {
			homeSeal.style.backgroundImage = "url(" + stylesheetdir + "/images/seal-summer.png)";
		}
		else if (currentMonth == "September") {
			homeSeal.style.backgroundImage = "url(" + stylesheetdir + "/images/seal-fall.png)";
		}
		else if (currentMonth == "October") {
			homeSeal.style.backgroundImage = "url(" + stylesheetdir + "/images/seal-fall.png)";
		}
		else if (currentMonth == "November") {
			homeSeal.style.backgroundImage = "url(" + stylesheetdir + "/images/seal-holiday.png)";
		}
		else if (currentMonth == "December") {
			homeSeal.style.backgroundImage = "url(" + stylesheetdir + "/images/seal-holiday.png)";
		}
	}
	
	if (smallSeal != null) {	
		
		if (currentMonth == "January") {
			smallSeal.style.backgroundImage = "url(" + stylesheetdir + "/images/seal-new-year-small.png)";
		}
		else if (currentMonth == "February") {
			smallSeal.style.backgroundImage = "url(" + stylesheetdir + "/images/seal-new-year-small.png)";
		}
		else if (currentMonth == "March") {
			smallSeal.style.backgroundImage = "url(" + stylesheetdir + "/images/seal-spring-small.png)";
		}
		else if (currentMonth == "April") {
			smallSeal.style.backgroundImage = "url(" + stylesheetdir + "/images/seal-spring-small.png)";
		}
		else if (currentMonth == "May") {
			smallSeal.style.backgroundImage = "url(" + stylesheetdir + "/images/seal-spring-small.png)";
		}
		else if (currentMonth == "June") {
			smallSeal.style.backgroundImage = "url(" + stylesheetdir + "/images/seal-summer-small.png)";
		}
		else if (currentMonth == "July") {
			smallSeal.style.backgroundImage = "url(" + stylesheetdir + "/images/seal-summer-small.png)";
		}
		else if (currentMonth == "August") {
			smallSeal.style.backgroundImage = "url(" + stylesheetdir + "/images/seal-summer-small.png)";
		}
		else if (currentMonth == "September") {
			smallSeal.style.backgroundImage = "url(" + stylesheetdir + "/images/seal-fall-small.png)";
		}
		else if (currentMonth == "October") {
			smallSeal.style.backgroundImage = "url(" + stylesheetdir + "/images/seal-fall-small.png)";
		}
		else if (currentMonth == "November") {
			smallSeal.style.backgroundImage = "url(" + stylesheetdir + "/images/seal-holiday-small.png)";
		}
		else if (currentMonth == "December") {
			smallSeal.style.backgroundImage = "url(" + stylesheetdir + "/images/seal-holiday-small.png)";
		}
	}
}
