<!--
function showSeasonPic()
{
   var imgSrc = "/images/entr_pillar.jpg";
   var current= new Date();
   var month=current.getMonth();
   if (month == 11)
      imgSrc = '/images/xmas.jpg'
   else if (month > 7 )
      imgSrc='/images/fall.jpg';
   else if (month > 4 )
      imgSrc='/images/summer.jpg';
   else if (month > 1)
      imgSrc='/images/spring.jpg';
   else 
      imgSrc='/images/winter1.jpg';
    document.write("<a href='/gallery.htm'><img src='"+imgSrc+"' width='200' border=0></a>");
    document.write("<img src='http://wibles.webhop.net/bgImages/kilroy.gif' width='0' border=0>");
}
//-->