
dayName = new Array ("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday");
monthName = new Array ("January","February","March","April","May","June","July","August","September","October","November","December");

now = new Date;

janDate = new Array;
  janDate[1] = "New Years Day";
  janDate[15] = "Martin Luther King's Birthday";
  janDate[25] = "Dad Meldrum's Birthday";
  janDate[31] = "Courtney's Birthday";
febDate = new Array;
  febDate[14] = "Valentine's Day";
  febDate[15] = "Jeremy and Courtney's Anniversary";
  febDate[19] = "John and Holly's Anniversary";
  febDate[23] = "Jeremy's Birthday";
marDate = new Array;
  marDate[1] = "Jared's Birthday";
  marDate[7] = "Jill's Birthday";
  marDate[9] = "Grandma Welker's Birthday";
  marDate[16] = "Grandpa Welker's Birthday";
  marDate[17] = "St. Patrick's Day";
  marDate[20] = "1st Day of Spring";
  marDate[30] = "John's Birthday";
aprDate = new Array;
mayDate = new Array;
  mayDate[7] = "Lindsay (Schwartz) Garns's Birthday";
  mayDate[8] = "Mom and Dad Meldrum's Anniversary";
  mayDate[20] = "Tyler Meldrum's Birthday";
  mayDate[22] = "Grandpa Shumway's Birthday";
junDate = new Array;
  junDate[1] = "Spencer's Birthday";
  junDate[18] = "Lindsay's Birthday";
  junDate[24] = "Dad Garns Birthday";
  junDate[26] = "Tyler and Jill's Anniversary";
julDate = new Array;
  julDate[4] = "July 4th - Independence Day";
  julDate[13] = "Jill, Spencer and Tyler come to Cali";
  julDate[18] = "Troy's Birthday";
  julDate[24] = "Pioneer Day";
augDate = new Array;
  augDate[11] = "Grandma and Grandpa Shumway's Anniversary";
  augDate[25] = "Leave for Meldrum cruise";
sepDate = new Array;
  sepDate[1] = "Get home from cruise";
  sepDate[3] = "Labor Day";
  sepDate[14] = "Tyler's Birthday";
  sepDate[18] = "Rosh Hashanah";
  sepDate[22] = "1st Day of Autumn";
  sepDate[25] = "Yom Kippur";
octDate = new Array;
  octDate[6] = "General Conference";
  octDate[7] = "General Conference";
  octDate[8] = "Columbus Day Observance/Canadian Thanksgiving";
  octDate[12] = "Columbus Day";
  octDate[29] = "Grandma Shumway's Birthday";
  octDate[31] = "Halloween";
novDate = new Array;
  novDate[5] = "Mom Garns Birthday & Sterling and Lindsay's Anniversary";
  novDate[6] = "Election Day";
  novDate[10] = "Dawson's Birthday";
  novDate[11] = "Veteran's Day/Remembrance Day (Canada)";
  novDate[17] = "Sterling's Birthday";
  novDate[24] = "Thanksgiving";
  novDate[25] = "Mom and Dad Garns Anniversary";
decDate = new Array;
  decDate[7] = "Baby 2 Due Date / Pearl Harbor Day";
  decDate[8] = "Holly's Birthday";
  decDate[10] = "Chanukah";
  decDate[24] = "Christmas Eve";
  decDate[25] = "Christmas Day";
  decDate[31] = "New Years Eve";



var monthVar = now.getMonth();
var dayInfo;
if (monthVar == 0) { dayInfo = janDate[now.getDate()]; }
if (monthVar == 1) { dayInfo = febDate[now.getDate()]; }
if (monthVar == 2) { dayInfo = marDate[now.getDate()]; }
if (monthVar == 3) { dayInfo = aprDate[now.getDate()]; }
if (monthVar == 4) { dayInfo = mayDate[now.getDate()]; }
if (monthVar == 5) { dayInfo = junDate[now.getDate()]; }
if (monthVar == 6) { dayInfo = julDate[now.getDate()]; }
if (monthVar == 7) { dayInfo = augDate[now.getDate()]; }
if (monthVar == 8) { dayInfo = sepDate[now.getDate()]; }
if (monthVar == 9) { dayInfo = octDate[now.getDate()]; }
if (monthVar == 10) { dayInfo = novDate[now.getDate()]; }
if (monthVar == 11) { dayInfo = decDate[now.getDate()]; }

if (!dayInfo) { dayInfo = "Calendar"; }

   document.write(dayName[now.getDay()] + ", " + monthName[now.getMonth()] + " " + now.getDate() + ", " + now.getFullYear() + "<BR><BR>");


function showCalendar() {
  calWin = window.open('http://garnsfam.com/calendar.php','calWin', 'width=450,height=350');
}

