// JavaScript Document

function createHolidayBanner()
{
	var today = new Date();
	// MLK Day
	/*var mlkDate=new Date(2010,0,18);
	if ((today.getMonth()==mlkDate.getMonth()) && (today.getDate()==mlkDate.getDate())) {
		document.getElementById("banners").style.backgroundImage = "url(/home/images/homepagebanner_H_MLK_2010.jpg)";
		document.getElementById("banners").innerHTML = "<h1 style='background:none;margin:0;top:53px;left:318px;width:365px;height:140px;'>&ldquo;And so even though we face the difficulties of today and tomorrow, I still have a dream.&rdquo;</h1><h2 style='background:none;margin:0;top:195px;left:465px;width:220px;height:50px;'>Martin Luther King, Jr.</h2>";
	}*/
	// Valentine's Day
	/*var valDate=new Date(2010,1,15);
	if ((today.getMonth()<=valDate.getMonth()) && (today.getDate()<=valDate.getDate())) {
		document.getElementById("banners").style.backgroundImage = "url(/home/images/homepagebanner_H_VAL_2010.jpg)";
		document.getElementById("banners").innerHTML = "<h1 style='background:none;margin:0;top:88px;left:306px;width:320px;height:34px;'>Happy Valentine's Day</h1><h2 style='background:none;margin:0;top:125px;left:306px;width:320px;height:50px;'>to you and your loved ones from your friends at MZA Multimedia.</h2><p><a href='/solutions/' style='top:24px;right:27px;width:27px;height:27px;line-height:18px;'>Learn more about MZA Multimedia Solutions.</a></p>";
	}*/
	// St Patrick's Day
	/*var stpDate=new Date(2010,2,19);
	if ((today.getMonth()<=stpDate.getMonth()) && (today.getDate()<=stpDate.getDate())) {
		document.getElementById("banners").style.backgroundImage = "url(/home/images/homepagebanner_H_STP_2010.jpg)";
		document.getElementById("banners").innerHTML = "<h1 style='background:none;margin:0;top:80px;left:306px;width:320px;height:65px;'>Hope You Find The Luck You've Been Looking For</h1><h2 style='background:none;margin:0;top:154px;left:306px;width:320px;height:50px;'>Happy Saint Patrick's Day from your friends at MZA Multimedia.</h2><p><a href='/solutions/' style='top:24px;right:27px;width:27px;height:27px;line-height:18px;'>Learn more about MZA Multimedia Solutions.</a></p>";
	}*/
	// Easter
	/*var easDate=new Date(2010,3,5);
	if ( (today.getMonth()<easDate.getMonth()) || ((today.getMonth()==easDate.getMonth()) && (today.getDate()<=easDate.getDate())) ) {
		document.getElementById("banners").style.backgroundImage = "url(/home/images/homepagebanner_H_EAS_2010.jpg)";
		document.getElementById("banners").innerHTML = "<h1 style='background:none;margin:0;top:98px;left:306px;width:320px;height:34px;'>Happy Easter</h1><h2 style='background:none;margin:0;top:135px;left:306px;width:320px;height:50px;'>to you and your loved ones from your friends at MZA Multimedia.</h2><p><a href='/solutions/' style='top:24px;right:27px;width:27px;height:27px;line-height:18px;'>Learn more about MZA Multimedia Solutions.</a></p>";
	}*/
	// Memorial Day
	/*var memDate=new Date(2010,5,4);
	if ( (today.getMonth()<memDate.getMonth()) || ((today.getMonth()==memDate.getMonth()) && (today.getDate()<=memDate.getDate())) ) {
		document.getElementById("banners").style.backgroundImage = "url(/home/images/homepagebanner_H_MEM_2010.jpg)";
		document.getElementById("banners").innerHTML = "<h1 style='background:none;margin:0;top:110px;left:370px;width:320px;height:130px;'>And the star-spangled banner in triumph doth wave, O'er the land of the free and the home of the brave.</h1><p><a href='/solutions/' style='top:24px;right:27px;width:27px;height:27px;line-height:18px;'>Learn more about MZA Multimedia Solutions.</a></p>";
	}*/
	// Independence Day
	var memDate=new Date(2010,6,9);
	if ( (today.getMonth()<memDate.getMonth()) || ((today.getMonth()==memDate.getMonth()) && (today.getDate()<=memDate.getDate())) ) {
		document.getElementById("banners").style.backgroundImage = "url(/home/images/homepagebanner_H_IND_2010.jpg)";
		document.getElementById("banners").innerHTML = "<h1 style='background:none;margin:0;top:240px;left:17px;width:685px;height:50px;'>Life, Liberty and the pursuit of Happiness.</h1><p><a href='/solutions/' style='top:24px;right:27px;width:27px;height:27px;line-height:18px;'>Learn more about MZA Multimedia Solutions.</a></p>";
	}
}

window.onload = createHolidayBanner;