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';

// Pre-cache window-minimize images...
//    ...must also provide these URIs as explicit parameters to the mouse-event code
var winImages = new Array()
  winImages[0]  = new Image(13,13);
  winImages[1]  = new Image(13,13);
  winImages[2]  = new Image(13,13);
  winImages[0].src  = '../../images/glossToggle.gif';
  winImages[1].src  = '../../images/glossToggleHover.gif';
  winImages[2].src  = '../../images/spacer.gif'; // Just put in this array for easy reference to its .src attributes for NN4 function hideImage(), below.

// Used in tandem with code that precedes the body tag.
var debug = true;
function right(e) {
  if (navigator.appName == 'Netscape' && (e.which == 3 || e.which == 2)) return false;
  else if (navigator.appName == 'Microsoft Internet Explorer' && (event.button == 2 || event.button == 3)) {
    alert('Denied!');
    return false;
  }
  return true;
}
document.onmousedown=right;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
window.onmousedown=right;


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="../index.php?submenu=breast_surgery">breast surgery</a></p>' +
'        <p><a href="../index.php?submenu=face_head_neck_surgery">face, head & neck surgery</a></p>' +
'        <div id="subSubMenuNN4">' +
'        <p class="detail"><a href="facelift.html">facelift</a></p>' +
'        <p class="detail"><a href="../../nonsurgical/resurfacing.html">laser resurfacing</a></p>' +
'        <p class="detail"><a href="eyelids.html">eyelids</a></p>' +
'        <p class="detail"><a href="forehead.html">forehead & eyebrows</a></p>' +
'        <p class="detail"><a href="chin.html">chin</a></p>' +
'        <p class="detail"><a href="neck.html">neck</a></p>' +
'        <p class="detail"><a href="ears.html">ears</a></p>' +
'        <p class="detail"><a href="other.html">other facial procedures</a></p>' +
'        </div>' +
'        <p><a href="../index.php?submenu=body_contour_surgery">body contour surgery</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 class="submenuNN4" id="primarySubmenuNN4" bgcolor="#999999">' +
'        <p><a href="../index.php">cosmetic procedures</a><img src="../../images/menuArrowNN4.gif" width="11" height="11" border="0" alt=""></p>' +
'        </td>' +
'      </tr>' +

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

