<!-- hide from non-JavaScript browsers

    browser = (((navigator.appName == "Netscape") && (parseInt(navigator.appVersion) >= 3 )) || ((navigator.appName == "Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >= 4)))

function eventtoday() {
	var theDate = new Date();
	var theMonth = (theDate.getMonth()+1);
	var theDay = theDate.getDate();
	var outStr = "";

	if (theMonth==1)
	{
	  if (theDay>0 && theDay<=5) outStr="<img src='images/event/tree.gif' width='77' height='96' alt='X-mas Tree' border='0'>";
      if (theDay==1) outStr=outStr+"<br><img src='images/event/newyr.gif' width='90' height='125' alt='New Year' border='0'>";
	}

   if (theMonth==2)
	{
	  if (theDay==14) outStr="<img src='images/event/cupid.gif' width='64' height='64' alt='Cupid' border='0'>";
	}

   if (theMonth==10)
	{
	  if (theDay==31) outStr="<img src='images/event/tricktreat.gif' width='64' height='64' alt='Halloween' border='0'>";
	}

   if (theMonth==11)
   {
      if (theDay==5) outStr="<img src='images/event/fireworks.gif' width='85' height='85' alt='Fireworks' border='1'>";
   }

	if (theMonth==12)
	{
	  if (theDay>0 && theDay<=31) outStr="<img src='images/event/tree.gif' width='77' height='96' alt='X-mas Tree' border='0'>";
	}document.write(outStr);
}

if (browser) {
   eventtoday()
}

// -->