// Get a header picture name
function getHeaderPic()
{
   var today    = new Date();
   var picName = "images/hdr4.jpg";
   switch( today.getDay() )
   {
      case 0:
          picName = "images/hdr2.jpg";
        break;
      case 1:
          picName = "images/hdr3.jpg";
         break;
      case 2:
          picName = "images/hdr4.jpg";
         break;
      case 3:
          picName = "images/hdr5.jpg";
         break;
      case 4:
          picName = "images/hdr6.jpg";
         break;
      case 5:
          picName = "images/hdr8.jpg";
         break;
      case 6:
      default:
          picName = "images/hdr4.jpg";
         break;
   }
   document.write("<td align=\"left\" width=\"100%\" valign=\"middle\" bgcolor=\"#e7e7ca\"  background=\"" + picName + "\">");
}


document.write("<title>Austin Texas Outdoors Woman Network</title>");
document.write("<link rel=\"stylesheet\" href=\"newstyle.css\">");
document.write("</head>");
document.write("<body bgcolor=\"#eeeeee\" leftmargin=\"0\" marginwidth=\"0\" topmargin=\"0\" marginheight=\"0\" link=\"#006666\" vlink=\"#cc6600\">");
document.write("");
document.write("");
document.write("");
document.write("<!-- BEGINNING OF THE BANNER/MENU TABLE -->");
document.write("<table width=\"100%\" border=\"2\" cellspacing=\"0\" cellpadding=\"0\">");
document.write("");
document.write("<!-- Banner row -->");
document.write("  <tr>");
document.write("   <td valign=\"bottom\" bgcolor=\"#ffffff\">");
document.write("      <table width=\"100%\" border=\"0\" align=\"left\" cellpadding=\"0\" cellspacing=\"0\">");
document.write("        <tr>");
getHeaderPic();
document.write("                      <BR><BR><P align=\"left\"><font size=\"24\" color=\"#e7e7ca\"><i><b>&nbsp;</b></i></font><BR>");
document.write("                      <font size=\"5\" color=\"#e7e7ca\"><i><b>&nbsp;&nbsp;</b></i></font>");
document.write("              <b><BR><font color=\"#e7e7ca\" size=\"-2\"><BR>");
document.write("             </font>&nbsp;<BR></P></b>");
document.write("          </td>");
document.write("");
document.write("        </tr>");
document.write("      </table>");
document.write("    </td>");
document.write("  </tr>");
document.write("  <!-- End banner row -->");
document.write("");
document.write("");
document.write("  <!-- begin Main menu row -->");
document.write("  <tr>");
document.write("    <td bgcolor=\"#336666\">");
document.write("       <table width=\"100%\" height=\"18\" border=\"0\" align=\"left\" cellpadding=\"0\" cellspacing=\"0\" background=\"/images/spacer.gif\">");
document.write("         <tr>");

if (navigator.appName == "Netscape")
{
   // Netscape menu
   document.write("           <td bgcolor=\"#336666\" align=\"center\" width=\"12%\"><a href=\"index.htm\"><b><font color=\"e7e7ca\" size=\"-2\">Home</font></b></a></td>");
   document.write("           <td align=\"center\" width=\"10%\"><a href=\"calendar.htm\"><b><font color=\"e7e7ca\" size=\"-2\">Calendar</font></b></a></td>");
   document.write("           <td align=\"center\" width=\"20%\"><a href=\"lead.htm\"><b><font color=\"e7e7ca\" size=\"-2\">Participate in Outings</font></b></a></td>");
   document.write("           <td align=\"center\" width=\"10%\"><a href=\"about.htm\"><b><font color=\"e7e7ca\" size=\"-2\">About Us</font></b></a></td>");
   document.write("           <td align=\"center\" width=\"15%\"><a href=\"join.htm\"><b><font color=\"e7e7ca\" size=\"-2\">Join TOWN!</font></b></a></td>");
   document.write("           <td align=\"center\" width=\"10%\"><a href=\"photos.htm\"><b><font color=\"e7e7ca\" size=\"-2\">Photos</font></b></a></td>");
   document.write("           <td align=\"center\" width=\"10%\"><a href=\"links.htm\"><b><font color=\"e7e7ca\" size=\"-2\">Resources</font></b></a></td>");
}
else
{
   // Internet Explorer menu (anchors around the table cell - cool!)
   document.write("           <a href=\"index.htm\"><td bgcolor=\"#336666\" align=\"center\" width=\"12%\" onMouseover=\"mouseOver(this);\" onMouseout=\"mouseOut(this);\" style=\"cursor:hand;\"><b><font color=\"e7e7ca\" size=\"-2\">Home</font></b></td></a>");
   document.write("           <a href=\"calendar.htm\"><td align=\"center\" width=\"10%\" onMouseover=\"mouseOver(this);\" onMouseout=\"mouseOut(this);\" style=\"cursor:hand;\"><b><font color=\"e7e7ca\" size=\"-2\">Calendar</font></b></td></a>");
   document.write("           <a href=\"lead.htm\"><td align=\"center\" width=\"20%\" onMouseover=\"mouseOver(this);\" onMouseout=\"mouseOut(this);\" style=\"cursor:hand;\"><b><font color=\"e7e7ca\" size=\"-2\">Participate in Outings</font></b></td></a>");
   document.write("           <a href=\"about.htm\"><td align=\"center\" width=\"10%\" onMouseover=\"mouseOver(this);\" onMouseout=\"mouseOut(this);\" style=\"cursor:hand;\"><b><font color=\"e7e7ca\" size=\"-2\">About Us</font></b></td></a>");
   document.write("           <a href=\"join.htm\"><td align=\"center\" width=\"15%\" onMouseover=\"mouseOver(this);\" onMouseout=\"mouseOut(this);\" style=\"cursor:hand;\"><b><font color=\"e7e7ca\" size=\"-2\">Join TOWN!</font></b></td></a>");
   document.write("           <a href=\"photos.htm\"><td align=\"center\" width=\"10%\" onMouseover=\"mouseOver(this);\" onMouseout=\"mouseOut(this);\" style=\"cursor:hand;\"><b><font color=\"e7e7ca\" size=\"-2\">Photos</font></b></td></a>");
   document.write("           <a href=\"links.htm\"><td align=\"center\" width=\"10%\" onMouseover=\"mouseOver(this);\" onMouseout=\"mouseOut(this);\" style=\"cursor:hand;\"><b><font color=\"e7e7ca\" size=\"-2\">Resources</font></b></td></a>");
}


document.write("         </tr>");
document.write("      </table>");
document.write("   </td>");
document.write("  </tr>");
document.write("  <!-- end menu row -->");
document.write("</table>");

