function writenavcolumn() {
document.write(
 '<span class="menuitembox" onmouseover="highlightselection(this)" onmouseout="unhighlightselection(this)"><a class="native" href="../arts/wiki/wiki.php"><img class="image-menu" src="../common/graphics/artsinthepark.gif" alt=""><\/a><\/span><br \/>' +
 '<span class="menuitembox" onmouseover="highlightselection(this)" onmouseout="unhighlightselection(this)"><a class="native" href="../oven/wiki/wiki.php"><img class="image-menu" src="../common/graphics/bakeoven.gif" alt=""><\/a><\/span><br \/>' +
 '<span class="menuitembox" onmouseover="highlightselection(this)" onmouseout="unhighlightselection(this)"><a class="native" href="../campfires/wiki/wiki.php"><img class="image-menu" src="../common/graphics/campfires.gif" alt="" ><\/a><\/span><br \/>' +
 '<span class="menuitembox" onmouseover="highlightselection(this)" onmouseout="unhighlightselection(this)"><a class="native" href="../dogs/wiki/wiki.php"><img class="image-menu" src="../common/graphics/dogs.gif" alt="" ><\/a><\/span><br \/>' +
 '<span class="menuitembox" onmouseover="highlightselection(this)" onmouseout="unhighlightselection(this)"><a class="native" href="../editor/wiki/wiki.php"><img class="image-menu" src="../common/graphics/editor.gif" alt="" ><\/a><\/span><br \/>' +
 '<span class="menuitembox" onmouseover="highlightselection(this)" onmouseout="unhighlightselection(this)"><a class="native" href="../market/wiki/wiki.php"><img class="image-menu" src="../common/graphics/farmersmarket.gif" alt="" ><\/a><\/span><br \/>' +
 '<span class="menuitembox" onmouseover="highlightselection(this)" onmouseout="unhighlightselection(this)"><a class="native" href="../maintenance/wiki/wiki.php"><img class="image-menu" src="../common/graphics/maintenance.gif" alt="" ><\/a><\/span><br \/>' +
 '<span class="menuitembox" onmouseover="highlightselection(this)" onmouseout="unhighlightselection(this)"><a class="native" href="../newsletter/wiki/wiki.php"><img class="image-menu" src="../common/graphics/newsletter.gif" alt="" ><\/a><\/span><br \/>' +
 '<span class="menuitembox" onmouseover="highlightselection(this)" onmouseout="unhighlightselection(this)"><a class="native" href="../gardens/wiki/wiki.php"><img class="image-menu" src="../common/graphics/parkgardens.gif" alt="" ><\/a><\/span><br \/>' +
 '<span class="menuitembox" onmouseover="highlightselection(this)" onmouseout="unhighlightselection(this)"><a class="native" href="../picnics/wiki/wiki.php"><img class="image-menu" src="../common/graphics/picnics.gif" alt="" ><\/a><\/span><br \/>' +
 '<span class="menuitembox" onmouseover="highlightselection(this)" onmouseout="unhighlightselection(this)"><a class="native" href="../play/wiki/wiki.php"><img class="image-menu" src="../common/graphics/playground.gif" alt="" ><\/a><\/span><br \/>' +
 '<span class="menuitembox" onmouseover="highlightselection(this)" onmouseout="unhighlightselection(this)"><a class="native" href="../police/wiki/wiki.php"><img class="image-menu" src="../common/graphics/police.gif" alt="" ><\/a><\/span><br \/>' +
 '<span class="menuitembox" onmouseover="highlightselection(this)" onmouseout="unhighlightselection(this)"><a class="native" href="../sports/wiki/wiki.php"><img class="image-menu" src="../common/graphics/sports.gif" alt="" ><\/a><\/span><br \/>' +
 '<div style="border-style:solid;border-width:1px 0px 1px 0px">' +
 '<span class="menuitembox" onmouseover="highlightselection(this)" onmouseout="unhighlightselection(this)"><a class="native" href="../city/city.html"><img class="image-menu" src="../common/graphics/city.gif" alt="" ><\/a><\/span><br \/>' +
 '<span class="menuitembox" onmouseover="highlightselection(this)" onmouseout="unhighlightselection(this)"><a class="native" href="../neighbourhood/wiki/wiki.php"><img class="image-menu" src="../common/graphics/neighbourhood.gif" alt="" ><\/a><\/span><br \/>' +
 '<span class="menuitembox" onmouseover="highlightselection(this)" onmouseout="unhighlightselection(this)"><a class="native" href="../research/wiki/wiki.php"><img class="image-menu" src="../common/graphics/research.gif" alt="" ><\/a><\/span><br \/>' +
 '</div>' +
 '<span class="menuitembox" onmouseover="highlightselection(this)" onmouseout="unhighlightselection(this)"><a class="native" href="../home/wiki/wiki.php"><img class="image-menu" src="../common/graphics/home.gif" alt="" ><\/a><\/span>'
)
}

function highlightselection(theElement) {
//  theElement.style.backgroundColor="#FFFFCF"; /* yellow-pale */
}
function unhighlightselection(theElement) {
  theElement.style.backgroundColor="white";
}
function do_onload() {
 var G_isIEQuirks = (navigator.appName=="Microsoft Internet Explorer") && ((document.compatMode && document.compatMode.indexOf("CSS1") >=0) ? false : true);
 var theElements;
 if (!G_isIEQuirks) {
   if (document.getElementById('page_menucolumn')) {
     theElements = document.getElementById('page_menucolumn').getElementsByTagName('div');
     if (theElements && (theElements.length > 0)) {
       for (var i=0; i < theElements.length; i++) {
	     if (theElements[i].className.indexOf('sidebar-menucolumn')>-1) {
	       theElements[i].style.width = "148px";
	     };
	     if (theElements[i].className.indexOf('page-menu')>-1) {
	       theElements[i].style.width = "149px";
	     };
	   };
     };
   };
   if (document.getElementById('friends_graphic')) {
     document.getElementById('friends_graphic').style.marginLeft="3px";
     document.getElementById('dept_title').style.marginLeft="3px";
   };
 };
}
