document.writeln('<div id="navwrapper"><div id="nav"><ul id="nav"><li id="nav_overview"><a href="index.html">Overview</a></li><li id="nav_core" class="droparrow"><a href="#">Core Package</a><ul><li><a href="platform.html">Public Platform<SUP>&#153;</SUP></a></li><li><a href="news.html">Public NewsRoom<SUP>&reg;</SUP></a></li><li><a href="arts.html">Public Arts<SUP>&reg;</SUP></a></li><li><a href="jukebox.html">JukeBox<SUP>&#153;</SUP></a></li></ul></li><li id="nav_reporter"><a href="reporter.html">Traffic Reporter&#153;</a></li><li id="nav_events"><a href="events.html">Public Events&reg;</a></li><li id="nav_composer"><a href="composer.html">Composer&#153;</a></li><li id="nav_pledge"><a href="pledge.html">Quick Pledge&#153;</a></li><li id="nav_pulse"><a href="pulse.html">Pulse&#153;</a></li><li id="nav_pubaction"><a href="pa.html" target="_blank">Public Action&reg;</a></li><li id="nav_streaming"><a href="streaming.html">Streaming</a></li></ul></div></div>');





sfHover = function() {
  var sfEls = document.getElementById("nav").getElementsByTagName("LI");
  for (var i=0; i<sfEls.length; i++) {
    sfEls[i].onmouseover=function() {
      this.className+=" sfhover";
    }
    sfEls[i].onmouseout=function() {
      this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
    }
  }
}
if (window.attachEvent) window.attachEvent("onload", sfHover);