 //This Javascript controls the Monthly image in the right corner and loads with the browser date
  //Javascript written by Ken Guzzetta for scvcma.org -- November 2006
  <!-- Begin
  today = new Date();
  m = today.getMonth();
  arm = new Array("january.gif", "february.gif", "march.gif", 
        "april.gif",  "may.gif", "june.gif", "july.gif", "august.gif", "september.gif","october.gif", "november.gif",          "december.gif");
  document.write("<img src='http://www.scvcma.org/images/seasonal/month2/" + arm[m] + "'>");
//  End -->
