now = new Date();
month = now.getMonth() + 1;
day = now.getDate();
if(month == 1 && day == 1) {
document.write('<img src="../../images/holiday-sm/newyear.jpg" alt="Happy New Year!" />');
}
else if(month == 2 && day == 2) {
document.write('<img src="../../images/holiday-sm/groundhog.jpg" alt="Groundhog Day" />');
}
else if(month == 2 && day == 12) {
document.write('<img src="../../images/holiday-sm/lincoln.jpg" alt="Lincoln\'s Birthday" />');
}
else if(month == 2 && day == 14) {
document.write('<img src="../../images/holiday-sm/valentines.jpg" alt="Happy Valentine\'s Day!" />');
}
else if(month == 2 && day == 20) {
document.write('<img src="../../images/holiday-sm/presidents.jpg" alt="President\'s Day" />');

}
else if(month == 3 && day == 17) {
document.write('<img src="../../images/holiday-sm/st-patricks.jpg" alt="Saint Patrick\'s Day" />');
}
else if(month == 4 && day == 1) {
document.write('<img src="../../images/holiday-sm/aprilfools.jpg" alt="April Fool\'s Day" />');
}
else if(month == 4 && day == 8) {
document.write('<img src="../../images/holiday-sm/easter.jpg" alt="Happy Easter!" />');
}
else if(month == 4 && day == 15) {
document.write('<img src="../../images/holiday-sm/taxday.jpg" alt="Tax Day" />');
}
else if(month == 4 && day == 22) {
document.write('<img src="../../images/holiday-sm/earth-day.jpg" alt="Earth Day" />');
}
else if(month == 5 && day == 13) {
document.write('<img src="../../images/holiday-sm/mothersday.jpg" alt="Happy Mother\'s Day!" />');
}
else if(month == 5 && day == 28) {
document.write('<img src="../../images/holiday-sm/memorial.jpg" alt="Memorial Day" />');
}
else if(month == 6 && day == 14) {
document.write('<img src="../../images/holiday-sm/flag.jpg" alt="Flag Day" />');
}
else if(month == 6 && day == 17) {
document.write('<img src="../../images/holiday-sm/fathersday.jpg" alt="Happy Father\'s Day!" />');
}
else if(month == 7 && day == 4) {
document.write('<img src="../../images/holiday-sm/flag.jpg" alt="Have a safe and happy Fourth of July holiday!" />');
}
else if(month == 9 && day == 11) {
document.write('<img src="../../images/holiday-sm/911.jpg" alt="Remembering our fallen heros - September, 11, 2001" />');
}
else if(month == 10 && day == 8) {
document.write('<img src="../../images/holiday-sm/columbus.jpg" alt="Columbus Day" />');
}
else if(month == 10 && day == 31) {
document.write('<img src="../../images/holiday-sm/halloween.jpg" alt="Halloween" />');
}
else if(month == 11 && day == 11) {
document.write('<img src="../../images/holiday-sm/veterans.jpg" alt="Veterans Day" />');
}
else if(month == 11 && day == 22) {
document.write('<img src="../../images/holiday-sm/thanksgiving.gif" alt="Happy Thanksgiving!" />');
}
else if(month == 12 && day == 25) {
document.write('<img src="../../images/holiday-sm/christmas.jpg" alt="Merry Christmas!!" />');
}
else {
document.write('<img src="../../images/holiday-sm/blank.jpg" alt="" />');
}

