﻿function loadHolidayImage() {
         var imageDateRange = ['0101,0102,http://memawsgarden.com/images/iStock_000010944998XSmall.jpg,Welcome',
		                      '0103,0214,http://www.memawsgarden.com/images/BoundHearts.jpg,Welcome',
		                      '0215,0229,http://www.memawsgarden.com/images/couple.jpg,Shop Memaw&apos;s Garden for those very special gifts',
		                      '0301,0331,http://www.memawsgarden.com/images/shamrock.jpg,Welcome',
		                      '0401,1031,http://www.memawsgarden.com/images/grandmothergranddaughter.jpg,Welcome',
				      		  '1101,1225,http://www.memawsgarden.com/images/grandmothergranddaughter.jpg,Welcome',
				      		  '1226,1231,http://memawsgarden.com/images/iStock_000010944998XSmall.jpg,Welcome'];
         var currentDate = new Date();
         var currentDayMonth = PadDigits((currentDate.getMonth()+1),2) + PadDigits(currentDate.getDate(),2);

         for (i=0; i<imageDateRange.length; i++) {
             var currentImageDateRange = imageDateRange[i].split(',');
             var startDate = currentImageDateRange[0];
             var endDate   = currentImageDateRange[1];
             var imageSrc  = currentImageDateRange[2];
             var textSaying = currentImageDateRange[3];

             if ((currentDayMonth >= startDate) && (currentDayMonth <= endDate)) {
                 document.getElementById('holidayImage').src = imageSrc;
                 document.getElementById('seasonal_text').innerHTML = textSaying;
                 break;
             }
         }
     }

	
    function PadDigits(n, totalDigits) 
    { 
        n = n.toString(); 
        var pd = ''; 
        if (totalDigits > n.length) 
        { 
            for (i=0; i < (totalDigits-n.length); i++) 
            { 
                pd += '0'; 
            } 
        } 
        return pd + n.toString(); 
    }	


function loadBackgroundImage() {
var BGImages=new Array();
BGImages[0]="http://memawsgarden.com/images/bg/snowflake.gif";
BGImages[1]="http://memawsgarden.com/images/bg/hanginghearts.gif";
BGImages[2]="http://memawsgarden.com/images/bg/shamrock.gif";
BGImages[3]="http://memawsgarden.com/images/bg/spring.gif";
BGImages[4]="http://memawsgarden.com/images/bg/spring.gif";
BGImages[5]="june.gif";
BGImages[6]="july.gif";
BGImages[7]="august.gif";
BGImages[8]="september.gif";
BGImages[9]="october.gif";
BGImages[10]="november.gif";
BGImages[11]="http://memawsgarden.com/images/bg/snowflake.gif";
var BG_Date=new Date();
if(document.body)
document.body.background=BGImages[BG_Date.getMonth()];
}

