    <!--

    var theImages = new Array();
    theImages[0] = 'subbranding1';
    theImages[1] = 'subbranding2';
    theImages[2] = 'subbranding3';

    var j = 0;
    var p = theImages.length;
    var whichImage = Math.round(Math.random() * (p - 1));
    function showImage() {
      document.write('<div id="subbysplashspacer" style="background-image: url(http://www.nmh.org/nmh/images/' + theImages[whichImage] + '.gif);">&nbsp;</div>');
      document.write('<div id="subbysplashimage">');
      document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" WIDTH="748" HEIGHT="50" id="' + theImages[whichImage] + '" ALIGN="LEFT">');
      document.write('<PARAM NAME=movie VALUE="http://www.nmh.org/nmh/images/' + theImages[whichImage] + '.swf" />');
      document.write('<PARAM NAME=quality VALUE=high />');
      document.write('<PARAM NAME=bgcolor VALUE=#FFFFFF />');
      document.write('<EMBED src="http://www.nmh.org/nmh/images/' + theImages[whichImage] + '.swf" quality=high bgcolor=#FFFFFF WIDTH="748" HEIGHT="50" NAME="' + theImages[whichImage] + '" ALIGN="LEFT" TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer"></EMBED>');
      document.write('</object>');
    }

    function swapImage(imgN, imgU) {
      if (document.images)document.images[imgN].src = imgU;
    }

    function preLoadImages() {
      var t = '<layer top="-100" left="0" visibility="hide"><div style="position:absolute; top:-100px; left:0px; visibility:hidden">';
      for (i = 0; i < arguments.length; i++)t += '<img src="' + arguments[i] + '" height="10" width="10">';
      t += '</div></layer>';
      document.write(t);
    }

    preLoadImages('http://www.nmh.org/nmh/images/navbutt_ss_on.gif', 'http://www.nmh.org/nmh/images/navbutt_pf_on.gif', 'http://www.nmh.org/nmh/images/navbutt_hg_on.gif', 'http://www.nmh.org/nmh/images/navbutt_hi_on.gif');

    //-->