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 = '../images/menuArrowClosed.gif';
  menuArrows[1].src = '../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">' +
'        <img src="../images/spacer.gif" width="100" height="1" border="0" alt=""><br>' +
'        <p><a href="../../index.html">our practice</a></p>' +
'        </td>' +

'        <td class="submenuNN4" width="125" rowspan="6" bgcolor="#999999">' +
'        <img src="../images/spacer.gif" width="125" height="1" border="0" alt=""><br>' +
'        <p><a href="facial.html">facials, peels<br>&amp; micro-<br>dermabrasion</a></p>' +
'        <p><a href="resurfacing.html">laser resurfacing</a></p>' +
'        <p><a href="../cosmetic/face/other.html#collagen">collagen injections</a></p>' +
'        <p><a href="../cosmetic/face/other.html#botox">BOTOX&#0174;</a></p>' +
'        <p><a href="../cosmetic/face/other.html#suction">facial suction</a></p>' +
'        <p><a href="../cosmetic/face/other.html#excision">skin excision</a></p>' +
'        <p><a href="makeup.html">makeup</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="../questions/index.html">questions</a></p>' +
'        </td>' +
'      </tr>' +

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

'      <tr valign="top">' +
'        <td class="submenuNN4" id="primarySubmenuNN4" bgcolor="#999999">' +
'        <p><a href="index.html">skin care &amp; non-surgical procedures</a><img src="../images/menuArrowNN4.gif" width="11" height="11" border="0" alt=""></p>' +
'        </td>' +
'     </tr>' +

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