// JavaScript Document

function dynamicimages() {

nctday=new Date();

month=nctday.getMonth();

day=nctday.getDate();

 

var numberofimages = 20;

images = new Array(numberofimages+1);

images[0] = "<img src='../monthly_seasonal/holidays/no-holiday/balloons_15.gif' border='0'>";

images[1] = "<img src='../monthly_seasonal/holidays/no-holiday/balloons_15.gif' border='0'>";

images[2] = "<img src='../monthly_seasonal/holidays/no-holiday/balloons_15.gif' border='0'>";

images[3] = "<img src='../monthly_seasonal/holidays/no-holiday/balloons_15.gif' border='0'>";

images[4] = "<img src='../monthly_seasonal/holidays/no-holiday/balloons_15.gif' border='0'>";

images[5] = "<img src='../monthly_seasonal/holidays/no-holiday/balloons_15.gif' border='0'>";

images[6] = "<img src='../monthly_seasonal/holidays/no-holiday/balloons_15.gif' border='0'>";

images[7] = "<img src='../monthly_seasonal/holidays/no-holiday/balloons_15.gif' border='0'>";

images[8] = "<img src='../monthly_seasonal/holidays/no-holiday/balloons_15.gif' border='0'>";

images[9] = "<img src='../monthly_seasonal/holidays/no-holiday/balloons_15.gif' border='0'>";

images[10] = "<img src='../monthly_seasonal/holidays/no-holiday/balloons_15.gif' border='0'>";

images[11] = "<img src='../monthly_seasonal/holidays/no-holiday/balloons_15.gif'border='0'>";

images[12] = "<img src='../monthly_seasonal/holidays/valentines/balloons_15.gif'>";

images[13] = "<img src='../monthly_seasonal/holidays/memorial/balloons_15.gif'>";

images[14] = "<img src='../monthly_seasonal/holidays/mothers/balloons_15.gif'>";

images[15] = "<img src='../monthly_seasonal/holidays/fathers/balloons_15.gif'>";

images[16] = "<img src='../monthly_seasonal/holidays/fourth/balloons_15.gif'>";

images[17] = "<img src='../monthly_seasonal/holidays/labor/balloons_15.gif'>";

images[18] = "<img src='../monthly_seasonal/holidays/christmas/balloons_15.gif'>";

images[19] = "<img src='../monthly_seasonal/holidays/newyears/balloons_15.gif'>";

 

if(month==1 && day < 15){

document.write(images[12]);

}
else if(month==0){

   document.write(images[12]);

 }

 else if(month==4 && day >= 15){

   document.write(images[13]);

 }

 else if(month==4 && day <= 14){

   document.write(images[14]);

 }

 else if(month==5 && day <= 27){

    document.write(images[15]);

 }

 else if(month==5 && day >= 28){

     document.write(images[16]);

 }

 else if(month==6 && day <= 4){

     document.write(images[16]);

 }

 else if(month==7 && day >= 23){

      document.write(images[17]);

 }

 else if(month==10 && day >= 29){

       document.write(images[18]);

 }

 else if(month==11 && day <= 25){

        document.write(images[18]);

 }

 else if(month==11 && day >= 26){

        document.write(images[19]);

 }

 else

{

   document.write(images[month]);

}

}

function dynamicimages2() {

nctday=new Date();

month=nctday.getMonth();

day=nctday.getDate();

 

var numberofimages = 20;

images = new Array(numberofimages+1);

images[0] = "<img src='../monthly_seasonal/holidays/no-holiday/balloons_16.gif' border='0'>";

images[1] = "<img src='../monthly_seasonal/holidays/no-holiday/balloons_16.gif' border='0'>";

images[2] = "<img src='../monthly_seasonal/holidays/no-holiday/balloons_16.gif' border='0'>";

images[3] = "<img src='../monthly_seasonal/holidays/no-holiday/balloons_16.gif' border='0'>";

images[4] = "<img src='../monthly_seasonal/holidays/no-holiday/balloons_16.gif' border='0'>";

images[5] = "<img src='../monthly_seasonal/holidays/no-holiday/balloons_16.gif' border='0'>";

images[6] = "<img src='../monthly_seasonal/holidays/no-holiday/balloons_16.gif' border='0'>";

images[7] = "<img src='../monthly_seasonal/holidays/no-holiday/balloons_16.gif' border='0'>";

images[8] = "<img src='../monthly_seasonal/holidays/no-holiday/balloons_16.gif' border='0'>";

images[9] = "<img src='../monthly_seasonal/holidays/no-holiday/balloons_16.gif' border='0'>";

images[10] = "<img src='../monthly_seasonal/holidays/no-holiday/balloons_16.gif' border='0'>";

images[11] = "<img src='../monthly_seasonal/holidays/no-holiday/balloons_16.gif' border='0'>";

images[12] = "<img src='../monthly_seasonal/holidays/valentines/balloons_16.gif' border='0'>";

images[13] = "<img src='../monthly_seasonal/holidays/memorial/balloons_16.gif' border='0'>";

images[14] = "<img src='../monthly_seasonal/holidays/mothers/balloons_16.gif' border='0'>";

images[15] = "<img src='../monthly_seasonal/holidays/fathers/balloons_16.gif' border='0'>";

images[16] = "<img src='../monthly_seasonal/holidays/fourth/balloons_16.gif' border='0'>";

images[17] = "<img src='../monthly_seasonal/holidays/labor/balloons_16.gif' border='0'>";

images[18] = "<img src='../monthly_seasonal/holidays/christmas/balloons_16.gif' border='0'>";

images[19] = "<img src='../monthly_seasonal/holidays/newyears/balloons_16.gif' border='0'>";

 

if(month==1 && day < 15){

document.write(images[12]);

}
else if(month==0){

   document.write(images[12]);

 }

 else if(month==4 && day >= 15){

   document.write(images[13]);

 }

 else if(month==4 && day <= 14){

   document.write(images[14]);

 }

 else if(month==5 && day <= 27){

    document.write(images[15]);

 }

 else if(month==5 && day >= 28){

     document.write(images[16]);

 }

 else if(month==6 && day <= 4){

     document.write(images[16]);

 }

 else if(month==7 && day >= 23){

      document.write(images[17]);

 }

 else if(month==10 && day >= 29){

       document.write(images[18]);

 }

 else if(month==11 && day <= 25){

        document.write(images[18]);

 }

 else if(month==11 && day >= 26){

        document.write(images[19]);

 }

 else

{

   document.write(images[month]);

}

}

