document.write('<style type="text/css">DIV.menu { display:none; } DIV.patientImageCaptions { display:none; } P.photoLink { font-size:11px; color:#999999; } P.photoLink A {  font-size:11px; color:#ffcc99; } P.photoCaption { color:#999999; }</style>');

// Local initialization of collapseMenu variables (init to arbitrary valid values).
var currLink       = "aboutMenu";
var currSubLink    = "";
var currSubMenu    = "aboutSubMenu";
var currSubSubMenu = "introSubSubMenu";
var currOpenedArrow = "bodyMenuArrow";  //  For toggleSwap() function. Shouldn't matter if initialized to non-open sub-menu's arrow.

// Manage state of sub-menu arrow indicators.
var menuArrows  = new Array();
  menuArrows[0] = new Image(11,11);
  menuArrows[1] = new Image(11,11);
  menuArrows[0].src = 'content/images/menuArrowClosed.gif';
  menuArrows[1].src = 'content/images/menuArrowOpened.gif';


var menuHTML =

'    <div class="navNN4">' +     //  BEGIN navNN4 SECTION
'    <table width="225" cellspacing="0" cellpadding="0" cellmargin="0" border="0">' +
'       <tr valign="top">' +
'        <td width="100" class="submenuNN4" id="primarySubmenuNN4" bgcolor="#999999">' +
'        <img src="content/images/spacer.gif" width="100" height="1" border="0" alt=""><br>' +
'        <p><a href="index.html">our practice<img src="content/images/menuArrowNN4.gif" width="11" height="11" border="0" alt=""></a></p>' +
'        </td>' +

'        <td class="submenuNN4" width="125" rowspan="6" bgcolor="#999999">' +
'        <img src="content/images/spacer.gif" width="125" height="1" border="0" alt=""><br>' +
'        <p><a href="content/about/glenhait.html">Glen Hait, MD</a></p>' +
'        <p><a href="content/about/offices.html">offices</a></p>' +
'        <p><a href="content/about/staff.html">staff</a></p>' +
'        <p><a href="content/about/affiliations.html">hospital affiliations</a></p>' +
'        <p><a href="content/about/services.html">special services</a></p>' +
'        </td>' +
'      </tr>' +

'      <tr valign="top">' +
'        <td>' +
'        <p><a href="https://www.glenhaitmd.com/content/appointments/index.php">appointments</a></p>' +
'        </td>' +
'      </tr>' +

'      <tr valign="top">' +
'        <td>' +
'        <p><a href="content/questions/index.html">questions</a></p>' +
'        </td>' +
'      </tr>' +

'      <tr valign="top">' +
'        <td>' +
'        <p><a href="content/cosmetic/index.php">cosmetic procedures</a></p>' +
'        </td>' +
'      </tr>' +

'      <tr valign="top">' +
'        <td>' +
'        <p><a href="content/nonsurgical/index.html">skin care &amp; non-surgical procedures</a></p>' +
'        </td>' +
'     </tr>' +

'      <tr valign="top">' +
'        <td>' +
'        <p><a href="content/lumpsbumpsandspots/index.html">lumps, bumps &amp; brown spots</a></p>' +
'        </td>' +
'      </tr>' +
'    </table>' +
'    </div>';                     //  END navNN4 SECTION

