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="http://www.glenhaitmd.com">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="http://www.glenhaitmd.com/content/questions/index.html">common questions</a></p>' +
'        <p><a href="https://www.glenhaitmd.com/content/questions/askDrHait.php">ask Dr. Hait</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 class="submenuNN4" id="primarySubmenuNN4" bgcolor="#999999">' +
'        <p><a href="http://www.glenhaitmd.com/content/questions/index.html">questions</a><img src="../images/menuArrowNN4.gif" width="11" height="11" border="0" alt=""></p>' +
'        </td>' +
'      </tr>' +

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

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

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

